:root {
    --primary-green: #25b57f;
    --primary-blue: #1a8bb9;
    --gradient-start: #25b57f;
    --gradient-end: #1a8bb9;
    --dark-text: #333333;
    --light-text: #ffffff;
    --light-bg: #f5f5f5;
    --medium-gray: #777777;
    --accent: #25b57f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: var(--dark-text);
    line-height: 1.6;
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);*/
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.cta-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/*
.contact-hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 160px 0 5px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}
*/
.page-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 160px 0 5px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.breadcrumbs {
    background-color: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
}

.breadcrumbs li {
    margin-right: 10px;
}

.breadcrumbs li:after {
    content: '>';
    margin-left: 10px;
    color: var(--medium-gray);
}

.breadcrumbs li:last-child:after {
    content: '';
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--medium-gray);
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--primary-green);
}

.breadcrumbs .current {
    color: var(--primary-green);
    font-weight: 600;
}

.service-overview {
    padding: 20px 0;
}

.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.service-text p {
    margin-bottom: 20px;
}

.service-benefits {
    background-color: var(--section-bg);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    color: white;
    font-size: 24px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--medium-gray);
}

.how-we-work {
    padding: 20px 0;
}

.workflow-steps {
    margin-top: 50px;
}

.workflow-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.workflow-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 34px;
    top: 70px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.step-number {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-right: 30px;
    position: relative;
    z-index: 1;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.pricing {
    background-color: var(--section-bg);
    padding: 80px 0;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 42px;
    font-weight: bold;
}

.price span {
    font-size: 18px;
    font-weight: normal;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.pricing-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-green);
    position: absolute;
    left: 0;
}

.pricing-popular {
    position: relative;
    transform: scale(1.05);
    z-index: 1;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.case-studies {
    padding: 80px 0;
}

.case-study-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.case-study-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.case-study-card:hover {
    transform: translateY(-10px);
}

.case-study-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-content {
    padding: 30px;
}

.case-study-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.case-study-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.faqs {
    background-color: var(--section-bg);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-white {
    background: white;
    color: var(--primary-blue);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-outline {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid white;
}

.cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 20px;
}

.footer-logo p {
    margin-bottom: 20px;
    color: #aaa;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-green);
}

.social-link i {
    color: white;
    font-size: 18px;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 992px) {
    .service-intro {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-options {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 50px auto 0;
    }

    .pricing-popular {
        transform: scale(1);
    }

    .case-study-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-text);
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    padding-top: 100px;
    text-align: center;
    overflow-y: auto;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu .cta-button {
    display: inline-block;
    margin-top: 20px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Enhanced Responsive Styles */
@media (max-width: 768px) {
    header .cta-button {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        height: 70px;
    }

    .page-header {
        padding: 130px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .page-header p {
        font-size: 16px;
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 28px;
        padding: 0 15px;
    }

    .section-header p {
        font-size: 16px;
        padding: 0 15px;
    }

    .service-overview,
    .service-benefits,
    .how-we-work,
    .pricing,
    .case-studies,
    .faqs {
        padding: 60px 0;
    }

    .breadcrumbs {
        overflow-x: auto;
        white-space: nowrap;
        padding: 15px 0;
    }

    .breadcrumbs ul {
        padding: 0 15px;
    }

    .workflow-step {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .workflow-step:not(:last-child):after {
        display: none;
    }

    .cta-section h2 {
        font-size: 26px;
        padding: 0 15px;
    }

    .cta-section p {
        font-size: 16px;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 350px;
        margin: 0 auto;
    }

    .cta-white,
    .cta-outline {
        width: 100%;
        text-align: center;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .service-text h2 {
        font-size: 26px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .benefit-card,
    .workflow-step {
        padding: 20px;
    }

    .benefit-card h3,
    .step-content h3 {
        font-size: 20px;
    }

    .service-intro,
    .workflow-steps {
        margin-top: 30px;
    }

    .service-text p,
    .benefit-card p,
    .step-content p {
        font-size: 15px;
    }
}