/* 
 * Main Stylesheet for domain
 * Color Palette:
 * - Electric Plum: #731DD8
 * - Soft Lemon: #FFE25B
 * - Ocean Slate: #2F3E46
 * - Coral Frost: #FA7268
 * - Mist White: #F8F9FA
 */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F8F9FA;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #731DD8;
    transition: all 0.3s ease;
}

a:hover {
    color: #5D14B3;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

section {
    padding: 5rem 0;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 15px;
}

.logo a {
    color: #731DD8;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo a:hover {
    color: #5D14B3;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    color: #2F3E46;
    font-weight: 600;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #731DD8;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.nav-cta {
    background-color: #731DD8;
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: #5D14B3;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-icon {
    position: relative;
    width: 30px;
    height: 3px;
    background-color: #731DD8;
    display: block;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-icon::before,
.nav-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #731DD8;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-icon::before {
    top: -8px;
}

.nav-icon::after {
    bottom: -8px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #2F3E46 0%, #1D262C 100%);
    color: #fff;
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(115, 29, 216, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: float 8s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(250, 114, 104, 0.15);
    border-radius: 50%;
    z-index: 1;
    animation: float 12s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1 1 50%;
    text-align: left;
}

.hero-image {
    flex: 1 1 40%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.9s;
    animation-fill-mode: both;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.03);
}

.animated-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    position: relative;
    display: inline-block;
}

.animated-headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #FFE25B;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-block;
    background-color: #731DD8;
    color: #fff;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(115, 29, 216, 0.4);
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #5D14B3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(115, 29, 216, 0.6);
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== COMPANY INTRO SECTION ===== */
.company-intro {
    background-color: #fff;
}

.company-intro h2 {
    text-align: center;
    color: #2F3E46;
    margin-bottom: 3rem;
    position: relative;
}

.company-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #731DD8;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.intro-text {
    flex: 1 1 60%;
}

.intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-values {
    flex: 1 1 30%;
    background-color: #2F3E46;
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(47, 62, 70, 0.2);
    transform: translateY(-30px);
}

.intro-values h3 {
    color: #FFE25B;
    margin-bottom: 1.5rem;
}

.intro-values ul {
    list-style-type: none;
}

.intro-values ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.intro-values ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #731DD8;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background-color: #f4f5f7;
    text-align: center;
}

.benefits h2 {
    color: #2F3E46;
    margin-bottom: 3rem;
    position: relative;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #731DD8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(115, 29, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #731DD8;
}

.benefit-card h3 {
    color: #2F3E46;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6c757d;
}

/* Icon placeholders */
.icon-transparency::before {
    content: "🔍";
    font-size: 2rem;
}

.icon-trust::before {
    content: "🤝";
    font-size: 2rem;
}

.icon-growth::before {
    content: "📈";
    font-size: 2rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: #fff;
}

.services h2 {
    text-align: center;
    color: #2F3E46;
    margin-bottom: 3rem;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #731DD8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #731DD8;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 29, 216, 0.05) 0%, rgba(255, 226, 91, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card h3 {
    position: relative;
    z-index: 1;
    color: #2F3E46;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    position: relative;
    z-index: 1;
    color: #6c757d;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

.service-link {
    position: relative;
    z-index: 1;
    font-weight: 600;
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
}

.service-link::after {
    content: ' →';
    opacity: 0;
    transition: all 0.3s ease;
}

.service-link:hover::after {
    opacity: 1;
    margin-left: 5px;
}

/* ===== WORKFLOW SECTION ===== */
.workflow {
    background-color: #f4f5f7;
}

.workflow h2 {
    text-align: center;
    color: #2F3E46;
    margin-bottom: 3rem;
    position: relative;
}

.workflow h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #731DD8;
}

.workflow-graphic {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.workflow-image {
    flex: 1 1 40%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    order: 2; /* Ensures image is on the right */
}

.workflow-steps {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    order: 1; /* Ensures text is on the left */
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #731DD8;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.workflow-step h3 {
    margin-bottom: 0.5rem;
    color: #2F3E46;
}

.workflow-step p {
    color: #6c757d;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: #2F3E46;
    color: #fff;
    padding: 6rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFE25B;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.testimonial-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    animation: slide 30s infinite linear;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    33.33% {
        transform: translateX(-100%);
    }
    66.66% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    flex: 0 0 100%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 0 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(255, 226, 91, 0.2);
    font-family: Georgia, serif;
}

.testimonial-author {
    font-style: italic;
    color: #FFE25B;
}

/* ===== FAQ SECTION ===== */
.faq {
    background-color: #fff;
    padding: 6rem 0;
}

.faq h2 {
    text-align: center;
    color: #2F3E46;
    margin-bottom: 3rem;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #731DD8;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    position: relative;
    font-weight: 600;
    background-color: #f8f9fa;
    padding: 1.2rem;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-right: 2.5rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #731DD8;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    padding: 0 1.2rem;
}

.faq-toggle:checked + .faq-question {
    background-color: #731DD8;
    color: #fff;
}

.faq-toggle:checked + .faq-question::after {
    content: '-';
    color: #fff;
    transform: translateY(-50%) rotate(180deg);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 1.2rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, #2F3E46 0%, #1D262C 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(115, 29, 216, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFE25B;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2F3E46;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f0f2f5;
    color: #2F3E46;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #731DD8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(115, 29, 216, 0.2);
    background-color: #ffffff;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.submit-button {
    display: inline-block;
    background-color: #731DD8;
    color: #fff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #5D14B3;
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
footer {
    background-color: #2F3E46;
    color: #fff;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info,
.footer-contact,
.footer-links {
    flex: 1 1 300px;
}

.footer-logo {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #adb5bd;
    line-height: 1.7;
}

.footer-contact h3,
.footer-links h3 {
    color: #FFE25B;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #731DD8;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: #adb5bd;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #adb5bd;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6c757d;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
    background-color: #f8f9fa;
    padding: 8rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-frame {
    background-color: #fff;
    border: 2px solid #731DD8;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thank-you h1 {
    color: #731DD8;
    margin-bottom: 1.5rem;
}

.thank-you-checkmark {
    width: 80px;
    height: 80px;
    background-color: #731DD8;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 2rem;
    position: relative;
}

.thank-you-checkmark::before {
    content: '';
    width: 30px;
    height: 15px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 28px;
}

.thank-you p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.back-button {
    display: inline-block;
    background-color: #731DD8;
    color: #fff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #5D14B3;
    transform: translateY(-3px);
}

/* ===== SERVICES PAGE ===== */
.page-header {
    background: linear-gradient(135deg, #2F3E46 0%, #1D262C 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(115, 29, 216, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.services-detail {
    padding: 6rem 0;
    background-color: #fff;
}

.services-detail.alternate {
    background-color: #f4f5f7;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.service-image {
    flex: 1 1 40%;
}

.service-image img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.02);
}

.service-content {
    flex: 1 1 50%;
}

.service-content h2 {
    color: #2F3E46;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #731DD8;
}

.service-content h3 {
    color: #731DD8;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-content ul li {
    margin-bottom: 0.8rem;
    color: #6c757d;
    position: relative;
}

.service-content .cta-button {
    margin-top: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #731DD8 0%, #5D14B3 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .cta-button {
    background-color: #FFE25B;
    color: #2F3E46;
}

.cta-content .cta-button:hover {
    background-color: #fff;
}

/* ===== POLICY PAGES ===== */
.policy-page {
    padding: 5rem 0;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #731DD8;
}

.policy-container h1 {
    color: #2F3E46;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-container h2 {
    color: #731DD8;
    margin: 2rem 0 1rem;
}

.policy-container p, 
.policy-container ul {
    margin-bottom: 1.5rem;
    color: #6c757d;
    line-height: 1.8;
}

.policy-container ul {
    padding-left: 2rem;
}

.policy-container ul li {
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .animated-headline {
        font-size: 2.8rem;
    }
    
    .intro-values {
        transform: translateY(0);
    }
    
    .workflow-graphic {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 90%;
    }
    
    .animated-headline {
        font-size: 2.2rem;
    }
    
    .animated-headline::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        padding: 2rem;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .policy-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .animated-headline {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
    }
    
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}
