/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1C1B2F;
    background-color: #F6E8EA;
}

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

/* Header Styles */
.header {
    background-color: #1C1B2F;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(28, 27, 47, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 2rem;
    font-weight: bold;
    color: #FDC830;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: #F37335;
}

/* Mobile Menu Toggle */
.menu-toggle-checkbox {
    display: none;
}

.menu-toggle-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #FDC830;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link:hover {
    color: #FDC830;
}

.header-phone {
    color: #FDC830;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.header-phone:hover {
    color: #F37335;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1C1B2F 0%, #2a2942 100%);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #FDC830;
}

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

.cta-button {
    display: inline-block;
    background-color: #F37335;
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #FDC830;
    color: #1C1B2F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 200, 48, 0.3);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1C1B2F;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background-color: #FFFFFF;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(28, 27, 47, 0.15);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-content {
    text-align: left;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Services Section */
.services {
    background-color: #F6E8EA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #FFFFFF;
    padding: 0 0 30px 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(28, 27, 47, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(28, 27, 47, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 0 30px 15px 30px;
    color: #1C1B2F;
}

.service-card p {
    margin: 0 30px 25px 30px;
    line-height: 1.6;
}

.service-card .cta-button {
    margin: 0 30px;
}

/* Benefits Section */
.benefits {
    background-color: #1C1B2F;
    color: #FFFFFF;
}

.benefits .section-title {
    color: #FDC830;
}

.benefits .section-subtitle {
    color: #FFFFFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #F37335;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FDC830;
}

.benefit-item p {
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #F6E8EA;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #F37335;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #1C1B2F;
}

.testimonial-company {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #F6E8EA;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(28, 27, 47, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1C1B2F;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FDC830;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #F37335;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    background-color: #F37335;
    color: #FFFFFF;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #FDC830;
    color: #1C1B2F;
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Footer Styles */
.footer {
    background-color: #1C1B2F;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

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

.footer-title {
    font-size: 1.8rem;
    color: #FDC830;
    margin-bottom: 15px;
}

.footer-subtitle {
    font-size: 1.3rem;
    color: #FDC830;
    margin-bottom: 15px;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #FDC830;
    text-decoration: none;
}

.contact-info a:hover {
    color: #F37335;
}

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

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

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

.footer-links a:hover {
    color: #FDC830;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #1C1B2F;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 500px;
    margin: 0 auto;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content h3 {
    margin-bottom: 15px;
    color: #FDC830;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-content a {
    color: #FDC830;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-accept {
    background-color: #F37335;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cookie-accept:hover {
    background-color: #FDC830;
    color: #1C1B2F;
}

.cookie-learn-more {
    color: #FDC830;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #FDC830;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-learn-more:hover {
    background-color: #FDC830;
    color: #1C1B2F;
}

/* Unified Policy Pages Styles */
.policy-title {
    font-size: 2.5rem;
    color: #1C1B2F;
    margin-bottom: 30px;
    text-align: center;
}

.policy-section-block {
    background-color: #FFFFFF;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(28, 27, 47, 0.1);
}

.policy-subsection {
    font-size: 1.5rem;
    color: #1C1B2F;
    margin-bottom: 20px;
    border-bottom: 2px solid #FDC830;
    padding-bottom: 10px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.policy-list li:before {
    content: "•";
    color: #F37335;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-content .contact-info {
    background-color: #F6E8EA;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.policy-content .contact-info h4 {
    color: #1C1B2F;
    margin-bottom: 15px;
}

.policy-content .contact-info p {
    margin-bottom: 10px;
}

.policy-content .contact-info a {
    color: #F37335;
    text-decoration: none;
}

.policy-content .contact-info a:hover {
    text-decoration: underline;
}

/* Thank You Page Styles */
.thank-you-section {
    background: linear-gradient(135deg, #1C1B2F 0%, #2a2942 100%);
    color: #FFFFFF;
    padding: 150px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmark-svg {
    animation: checkmarkAppear 0.8s ease-out;
    filter: drop-shadow(0 5px 15px rgba(253, 200, 48, 0.3));
}

.checkmark-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheckmark 1s ease-out 0.3s forwards;
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(-90deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes drawCheckmark {
    to {
        stroke-dashoffset: 0;
    }
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FDC830;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.thank-you-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.thank-you-content .cta-button {
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle-button {
        display: flex;
    }
    
    .menu-overlay {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-toggle-checkbox:checked ~ .menu-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #1C1B2F;
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .menu-toggle-checkbox:checked ~ .nav {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-item {
        border-bottom: 1px solid #444;
        padding: 15px 0;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .policy-section-block {
        padding: 25px 20px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .service-card,
    .form-container {
        padding: 25px 15px;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-content p {
        font-size: 1.1rem;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-img {
        height: 250px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .service-image {
        height: 180px;
    }
    
    .checkmark-svg {
        width: 60px;
        height: 60px;
    }
}
