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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-content {
    background: #2c3e50;
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.cookie-text p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.4;
    margin: 0;
}

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

.cookie-btn {
    background: #f4d03f;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #f1c40f;
    transform: translateY(-1px);
}

.cookie-btn.secondary {
    background: transparent;
    color: #bdc3c7;
    border: 1px solid #34495e;
}

.cookie-btn.secondary:hover {
    background: #34495e;
    color: white;
    transform: translateY(-1px);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.modal-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.modal-btn {
    background: #f4d03f;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.nav {
    background: #f8f9fa;
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background: #e9ecef;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%),
                url('./assets/bg.png') center/cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.1;
}

.hero-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-button {
    background: #f4d03f;
    color: #333;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #555;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.services h3 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.services-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.service-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.blue-border {
    border-left-color: #3498db;
}

.service-card.yellow-border {
    border-left-color: #f4d03f;
}

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

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    text-align: left;
}

.testimonial-author strong {
    color: #333;
    font-weight: 600;
    font-style: normal;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #f4d03f;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

.submit-button {
    background: #f4d03f;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.submit-button:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    color: #666;
}

.contact-icon {
    font-size: 18px;
    min-width: 20px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-left h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-right h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text h2,
    .services h2,
    .testimonials h2,
    .faq h2,
    .contact h2 {
        font-size: 32px;
    }

    .about-text h3,
    .services h3 {
        font-size: 20px;
    }

    .about,
    .services,
    .testimonials,
    .faq,
    .contact {
        padding: 80px 0;
    }

    .service-card,
    .testimonial-card,
    .faq-item {
        padding: 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-info {
        min-width: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 14px;
    }

    .about,
    .services,
    .testimonials,
    .faq,
    .contact {
        padding: 60px 0;
    }

    .service-card,
    .testimonial-card,
    .faq-item {
        padding: 20px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .footer {
        padding: 30px 0 20px;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 15px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-actions {
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

    .nav {
        padding: 8px 15px;
        gap: 10px;
    }

    .nav a {
        padding: 6px 12px;
        font-size: 13px;
    }

    .contact-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .contact-icon {
        align-self: center;
    }
