/* ===== Page Title ===== */
.page-title {
    padding: 100px 0 30px;
    background: #ffffff;
}

.page-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* ===== Service Sections ===== */
.service-section {
    padding: 60px 0;
    background: #ffffff;
}

.service-section.alt-bg {
    background: #f9f9f9;
}

.service-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.service-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 8px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 5px;
}

/* ===== Gallery ===== */
.gallery-section {
    padding: 60px 0;
    background: #ffffff;
}

.gallery-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 5px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 60px 0;
    background: #222;
    color: #fff;
}

.cta-section h2 {
    margin-bottom: 15px;
}

