/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0e1a2b;
    overflow-x: hidden;
}

body:has(#menu-toggle:checked) {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffc107;
}

h3 {
    font-size: 1.5rem;
    color: #ffc107;
}

p {
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #111111;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffc107;
}

.btn-secondary:hover {
    background: #ffc107;
    color: #111111;
}

/* Header */
.header {
    background-color: #1a2332;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffc107;
    text-decoration: none;
}

/* Navigation */
.nav {
    position: relative;
}

.menu-checkbox {
    display: none;
}

.menu-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle-label span {
    width: 25px;
    height: 3px;
    background: #ffc107;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-menu li a:hover {
    color: #ffc107;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(14, 26, 43, 0.8), rgba(14, 26, 43, 0.8)), url('./img/MA1Lp.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #0e1a2b;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: #1a2332;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.advantage-card {
    background: linear-gradient(135deg, #2a3441, #1a2332);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ffc107;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: #ffc107;
}

.advantage-card p {
    color: #ffffff;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #0e1a2b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: #1a2332;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ffc107;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: #ffc107;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    padding: 0.5rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

/* Steps Section */
.steps {
    padding: 80px 0;
    background-color: #1a2332;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.step-card {
    background: linear-gradient(135deg, #2a3441, #1a2332);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ffc107;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: #ffc107;
}

.step-card p {
    color: #ffffff;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #0e1a2b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #1a2332;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ffc107;
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #ffc107;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #ffffff;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    text-align: center;
}

.cta-content h2 {
    color: #111111;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #111111;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background: #111111;
    color: #ffffff;
}

.cta .btn-primary:hover {
    background: #333333;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #1a2332;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #ffc107;
}

.contact-item {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-item strong {
    color: #ffc107;
    display: block;
    margin-bottom: 0.5rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
}

/* Form Styles */
.contact-form {
    background: #2a3441;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ffc107;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffc107;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #444;
    border-radius: 5px;
    background: #ffffff;
    color: #111111;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffe1;
    box-shadow: 0 0 5px rgba(0, 255, 225, 0.3);
}

.form-group select option {
    background: #ffffff;
    color: #111111;
}

.form-checkboxes {
    margin-bottom: 2rem;
}

.checkbox-group {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #00ffe1;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #0e1a2b;
    padding: 50px 0 20px;
    border-top: 1px solid #ffc107;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #ffffff;
    margin: 0;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1a2332;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    z-index: 10000;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ffffff;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background-color: #0e1a2b;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #1a2332;
    padding: 50px;
    border-radius: 10px;
    border: 2px solid #ffc107;
}

.legal-content h1 {
    color: #ffc107;
    text-align: center;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #ffc107;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #ffc107;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.legal-actions {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ffc107;
}

/* Thanks Section */
.thanks-section {
    min-height: 100vh;
    display: grid;
    align-items: center;
    background-color: #0e1a2b;
    padding: 100px 20px 50px;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #1a2332;
    padding: 50px;
    border-radius: 10px;
    border: 2px solid #ffc107;
}

.thanks-content h1 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.thanks-content p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thanks-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle-label {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        min-width: 100vw;
        right: -15px;
        top: 100%;
        right: -15px;
        background: #1a2332;
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid #ffc107;
    }

    .menu-checkbox:checked ~ .nav-menu {
        max-height: 100vh;
        height: 100vh;
        padding: 20px;

    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-section {
        height: auto;
    }

    .thanks-content {
        padding: 30px;
        margin: 8rem auto 5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 15px 30px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .advantage-card,
    .step-card,
    .testimonial-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .legal-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .thanks-content {
        padding: 30px 14px;
        margin: 8rem 15px 5rem;
    }
}
