:root {
    --primary-color: #064D50;
    --secondary-color: #00383b;
    --accent-color: #42db00;
    --dark-color: #00383b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --light-gray: #e6f0f0;
    --text-color: #334155;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'HandelGothic', 'Montserrat', sans-serif;
    font-weight: 600;
}

/* General Section Styles */
section {
    padding: 5rem 0;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(6, 77, 80, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 7rem 0 5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #e6f0f0 100%);
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    bottom: -5rem;
    left: 0;
    width: 100%;
    height: 10rem;
    background-color: white;
    clip-path: ellipse(55% 70% at 50% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.badge-services {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(6, 77, 80, 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 2rem;
    display: inline-flex;
}

.breadcrumb-item {
    font-size: 0.875rem;
    color: var(--gray-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    padding: 0 0.5rem;
    color: var(--gray-color);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Services Grid Section */
.services-grid-section {
    padding: 7rem 0 5rem;
    background-color: white;
}

.section-header {
    margin-bottom: 3rem;
}

.services-grid {
    margin-top: 2rem;
}

.service-card {
    padding: 2.5rem 1.5rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(6, 77, 80, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: rgba(6, 77, 80, 0.15);
}

.service-icon img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Business Growth Section */
.business-growth-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.growth-content {
    padding: 2rem;
}

/* Service Process Section */
.service-process-section {
    padding: 7rem 0;
    background-color: white;
}

.process-image {
    position: relative;
    padding-right: 3rem;
}

.process-image::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: rgba(6, 77, 80, 0.05);
    border-radius: 1rem;
    z-index: -1;
}

.process-content {
    padding-left: 2rem;
}

.process-steps {
    margin-top: 2.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-content p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.9375rem;
}

/* Privacy Protection Section */
.privacy-section {
    padding: 7rem 0;
    background-color: var(--light-gray);
}

.privacy-content, .benefits-content {
    padding-right: 2rem;
}

.privacy-features, .benefits-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 1.25rem;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-content p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.9375rem;
}

/* Benefits Section */
.benefits-section {
    padding: 7rem 0;
    background-color: white;
}

.benefits-image {
    padding-left: 2rem;
    position: relative;
}

.benefits-image::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 70%;
    height: 70%;
    background-color: rgba(66, 219, 0, 0.1);
    border-radius: 1rem;
    z-index: -1;
}

/* Support Section */
.support-section {
    padding: 7rem 0;
    background-color: var(--light-gray);
}

.card-content {
    background-color: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-check {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.75rem;
}

/* Social Media Section */
.social-media-section {
    padding: 3rem 0 7rem;
    background-color: white;
}

.social-media-card {
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: 1rem;
}

.social-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.social-text {
    color: var(--gray-color);
    margin-bottom: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--dark-color);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: white;
}

.facebook:hover {
    background-color: #1877f2;
}

.twitter:hover {
    background-color: #1da1f2;
}

.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.linkedin:hover {
    background-color: #0077b5;
}

.youtube:hover {
    background-color: #ff0000;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 4rem 0;
    }
    .hero-section {
        padding: 5rem 0 3rem;
    }
    .process-content, .privacy-content, .benefits-content {
        padding: 0;
        margin-top: 3rem;
    }
    .process-image, .benefits-image {
        padding: 0;
    }
    .social-icons {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .social-media-card {
        padding: 2rem;
    }
    .card-content {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    section {
        padding: 3rem 0;
    }
    .hero-section {
        padding: 4rem 0 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .social-media-card {
        padding: 1.5rem;
    }
}


/* FAQ Section Styles */
.faq-section {
    padding: 7rem 0;
    background-color: #f8f9fa;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    border: none;
    border-radius: 0.75rem !important;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(6, 77, 80, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 77, 80, 0.15);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    border-radius: 0.75rem !important;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(6, 77, 80, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23064D50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    background-color: white;
    padding: 1.5rem 2rem 2rem;
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(6, 77, 80, 0.1);
}

.accordion-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Detailed Services Section Updates */
.detailed-services-section {
    padding: 7rem 0;
    background-color: white;
}

.service-feature-row {
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.service-feature-row:last-child {
    margin-bottom: 0;
}

.service-feature-content {
    padding: 2rem;
}

.service-feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-feature-content p {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-feature-content .feature-list {
    margin-bottom: 2.5rem;
}

.service-feature-content .feature-list li {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

/* ...existing code... */

/* Image Sizing and Spacing - UPDATED */
.service-feature-row img {
    width: 100%;
    height: auto; /* Changed from fixed 400px to auto */
    min-height: 300px; /* Added minimum height */
    max-height: 450px; /* Added maximum height */
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(6, 77, 80, 0.15);
    transition: all 0.3s ease;
}

/* Better image container handling */
.service-feature-row .col-lg-6 {
    display: flex;
    align-items: center; /* Centers image vertically with content */
}

.service-feature-row .col-lg-6 img {
    margin: auto; /* Centers image if container is taller */
}

.privacy-image img,
.benefits-image img {
    width: 100%;
    height: auto; /* Changed from fixed 350px */
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.process-image img {
    width: 100%;
    height: auto; /* Changed from fixed 400px */
    min-height: 300px;
    max-height: 450px;
    object-fit: cover;
    border-radius: 1rem;
}

/* Enhanced content alignment */
.service-feature-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    height: 100%;
}

/* Responsive adjustments - UPDATED */
@media (max-width: 991.98px) {
    .service-feature-content {
        padding: 2rem 0;
        margin-top: 2rem;
    }
    
    .service-feature-row img {
        min-height: 250px;
        max-height: 350px;
        margin-bottom: 1rem;
    }
    
    .service-feature-row .col-lg-6 {
        align-items: stretch; /* Reset alignment on mobile */
    }
    
    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.25rem 1.5rem 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .service-feature-row img {
        min-height: 200px;
        max-height: 300px;
    }
    
    .privacy-image img,
    .benefits-image img {
        min-height: 200px;
        max-height: 300px;
    }
    
    .process-image img {
        min-height: 200px;
        max-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .service-feature-title {
        font-size: 1.75rem;
    }
    
    .service-feature-row img {
        min-height: 180px;
        max-height: 250px;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Additional improvements for better image aspect ratios */
.service-feature-row .col-lg-6:first-child {
    order: 1;
}

.service-feature-row .col-lg-6:last-child {
    order: 2;
}

.service-feature-row.flex-lg-row-reverse .col-lg-6:first-child {
    order: 2;
}

.service-feature-row.flex-lg-row-reverse .col-lg-6:last-child {
    order: 1;
}

/* Ensure equal height columns on desktop */
@media (min-width: 992px) {
    .service-feature-row {
        display: flex;
        align-items: stretch;
    }
    
    .service-feature-row .row {
        width: 100%;
        margin: 0;
    }
    
    .service-feature-row .col-lg-6 {
        display: flex;
        flex-direction: column;
    }
}

/* ...existing code... */