* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #f4f7fc;
    color: #1a2c3e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.site-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03), 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(2px);
}

.nav-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #1E6F5C, #289672);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E6F5C;
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
    .logo-text {
        font-size: 1rem;
    }
    .logo a {
        gap: 0.5rem;
    }
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1E6F5C;
}

.nav-links a.active {
    font-weight: bold;
    border-bottom: 2px solid #1E6F5C;
    padding-bottom: 5px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown > a i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.2s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 260px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid #e0edf2;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.2rem;
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f4f7fc;
    color: #1E6F5C;
    padding-left: 1.5rem;
}

.dropdown-menu a i {
    width: 20px;
    color: #1E6F5C;
    font-size: 0.9rem;
}

.dropdown-divider {
    height: 1px;
    background: #e0edf2;
    margin: 0.3rem 0;
}

.dropdown-header {
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 0.75rem;
    color: #1E6F5C;
    background: #f9fdfb;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e0edf2;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown > a i {
        display: none;
    }
}

/* Buttons */
.btn-outline {
    border: 1.5px solid #1E6F5C;
    background: transparent;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    color: #1E6F5C;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #1E6F5C;
    color: white;
}

.btn-primary {
    background: #1E6F5C;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0f5545;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #1E6F5C;
    color: #1E6F5C;
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #e0f0ec;
}

.btn-large {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(110deg, #eef5f9 0%, #ffffff 100%);
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid #e2edf2;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 2;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f2c3b;
    margin-bottom: 1rem;
}

.hero .highlight {
    color: #1E6F5C;
}

.hero p {
    font-size: 1.2rem;
    color: #2c4b5e;
    max-width: 680px;
    margin-bottom: 1.5rem;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Section styling */
.section {
    padding: 3.5rem 0;
    border-bottom: 1px solid #e0edf2;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1E6F5C;
    margin-top: 8px;
    border-radius: 3px;
}

.badge {
    background: #e8f0fe;
    color: #1E6F5C;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Page header for services/business pages */
.page-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1E6F5C;
    margin-bottom: 0.5rem;
}

.offer-banner {
    background: linear-gradient(135deg, #1E6F5C 0%, #0f5545 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Service cards (homepage) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-top: 1.2rem;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.02), 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e9f0f3;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-desc {
    color: #2c4b5e;
    margin: 0.8rem 0;
    font-size: 0.95rem;
}

.price {
    font-weight: 800;
    font-size: 1.5rem;
    color: #1E6F5C;
    margin-top: 0.8rem;
}

.price small {
    font-size: 0.9rem;
    font-weight: normal;
    color: #4b6f82;
}

.extra-skills {
    background: #fefaf0;
    border-left: 5px solid #1E6F5C;
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    margin: 2rem 0 0.5rem;
}

/* Business cards (homepage) */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.business-card {
    background: white;
    border-radius: 20px;
    padding: 1.4rem;
    border: 1px solid #e0eef4;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.business-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.business-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1E6F5C;
    margin: 0.5rem 0;
}

.retainer-box {
    background: #eaf4f0;
    padding: 1.6rem;
    border-radius: 28px;
    margin-top: 1.8rem;
}

/* Service detail cards (services/business pages) */
.service-detail {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.02), 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e9f0f3;
}

.service-detail:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #1E6F5C;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.service-detail-header h2 {
    margin: 0;
    color: #1E6F5C;
    font-size: 1.6rem;
}

.price-badge {
    background: #1E6F5C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 60px;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-detail-content h3 {
    color: #2c4b5e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-detail-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.service-detail-content li {
    margin: 0.5rem 0;
}

.service-detail-content p {
    line-height: 1.6;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

/* Retainer detail page */
.retainer-detail {
    background: linear-gradient(135deg, #f0f7f4 0%, #e0edf2 100%);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.retainer-detail h2 {
    color: #1E6F5C;
    margin-bottom: 1rem;
}

.retainer-detail ul {
    text-align: left;
    max-width: 500px;
    margin: 1.5rem auto;
}

/* About section */
.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-photo {
    flex: 1;
    text-align: center;
}

.about-photo img {
    max-width: 100%;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 200px;
}

/* FAQ section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e0edf2;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a2c3e;
}

/* Legal section */
.legal-section {
    margin-top: 2rem;
    background: #f9fdfb;
    border-radius: 24px;
    padding: 1.5rem;
}

.legal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.legal-btn {
    background: none;
    border: none;
    color: #1E6F5C;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

.legal-content {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    font-size: 0.9rem;
    max-height: 300px;
    overflow-y: auto;
}

.legal-content.active {
    display: block;
}

/* Why choose us */
.why-choose-us {
    margin: 3rem 0;
    text-align: center;
}

.why-choose-us h2 {
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #e0edf2;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.why-card h3 {
    color: #1E6F5C;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-card p {
    font-size: 0.9rem;
    color: #5a6e7a;
}

/* Back to home link */
.back-to-home {
    text-align: center;
    margin: 2rem 0 3rem;
}

.back-to-home a {
    color: #1E6F5C;
    text-decoration: none;
    border-bottom: 1px solid #1E6F5C;
}

/* Footer */
.footer {
    background: #0f2c3b;
    color: #cddfe6;
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: #9ec8b8;
    text-decoration: none;
}

/* Icon spacing */
.icon-margin {
    margin-right: 8px;
    color: #1E6F5C;
}

/* Responsive */
@media (max-width: 700px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .service-detail-header h2 {
        font-size: 1.3rem;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .business-grid {
        grid-template-columns: 1fr;
    }
}