.elementor-83 .elementor-element.elementor-element-00b6a87{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS *//* --- HERO SECTION --- */
.hero {
    /* Placeholder image from Unsplash */
    background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.6)), url('/wp-content/uploads/2025/11/hero1.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 10px;
}

.hero-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* --- SERVICES GRID --- */
.services {
    padding: 80px 0;
    background: var(--white);
}

/* Layout for desktop: 2-column split */
.services-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.services-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    text-align: center;
}

.services-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-width: 300px;
}

.service-card {
    background: var(--bg-light);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 0.85rem;
    border-bottom: 2px solid transparent;
}

.service-link:hover {
    border-bottom: 2px solid var(--accent-teal);
}

/* --- ABOUT SECTION --- */
.about {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 20px 20px 0px var(--accent-teal); /* Visual Flair */
}

.about-text {
    flex: 1;
}


/* --- HOME-SPECIFIC MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-layout {
        flex-direction: column;
    }
    .services-text {
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .services-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-image img {
        box-shadow: 10px 10px 0px var(--accent-teal);
    }
}/* End custom CSS */