* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight-blue: #1A237E;
    --warm-yellow: #FFC107;
    --aqua-blue: #00BCD4;
    --dark-bg: #0a0e2e;
    --light-text: #ffffff;
    --shadow-glow: 0 0 20px rgba(255, 193, 7, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    hyphens: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--dark-bg) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--warm-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-link img {
    margin-right: 10px;
    filter: drop-shadow(0 0 10px var(--warm-yellow));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--warm-yellow);
    text-shadow: 0 0 10px var(--warm-yellow);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--warm-yellow);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--warm-yellow);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(10, 14, 46, 0.9)), url('../images/ambient-1.jpg') center/cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 188, 212, 0.1) 100%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--warm-yellow);
    text-shadow: 0 0 20px var(--warm-yellow), 0 0 40px var(--warm-yellow);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px var(--warm-yellow), 0 0 40px var(--warm-yellow); }
    to { text-shadow: 0 0 30px var(--warm-yellow), 0 0 60px var(--warm-yellow), 0 0 80px var(--warm-yellow); }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--aqua-blue);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--warm-yellow);
    color: var(--midnight-blue);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
    background: #ffd54f;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--aqua-blue);
    color: var(--aqua-blue);
}

.btn-secondary:hover {
    background: var(--aqua-blue);
    color: var(--light-text);
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--warm-yellow);
    text-shadow: 0 0 15px var(--warm-yellow);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3), rgba(0, 188, 212, 0.2));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--aqua-blue);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.5);
    border-color: var(--warm-yellow);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--warm-yellow);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--warm-yellow));
}

.benefit-card h3 {
    color: var(--aqua-blue);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: rgba(26, 35, 126, 0.4);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--warm-yellow);
}

.feature-box h3 {
    color: var(--warm-yellow);
    margin-bottom: 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--warm-yellow);
    color: var(--midnight-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px var(--warm-yellow);
}

.faq-item {
    background: rgba(26, 35, 126, 0.3);
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--aqua-blue);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--warm-yellow);
    font-weight: bold;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 188, 212, 0.2);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--light-text);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

footer {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--dark-bg) 100%);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--warm-yellow);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--aqua-blue);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--warm-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 188, 212, 0.3);
    color: var(--aqua-blue);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(26, 35, 126, 0.3);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--aqua-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--warm-yellow);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(10, 14, 46, 0.5);
    border: 1px solid var(--aqua-blue);
    border-radius: 5px;
    color: var(--light-text);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-yellow);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.map-container {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(26, 35, 126, 0.4);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--aqua-blue);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.5);
    border-color: var(--warm-yellow);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--warm-yellow);
    margin-bottom: 1rem;
}

.success-message {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 4rem auto;
    background: rgba(26, 35, 126, 0.3);
    border-radius: 10px;
    border: 1px solid var(--warm-yellow);
}

.success-message i {
    font-size: 4rem;
    color: var(--warm-yellow);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px var(--warm-yellow));
}

.policy-content {
    max-width: 800px;
    margin: 2rem auto;
    background: rgba(26, 35, 126, 0.3);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--aqua-blue);
}

.policy-content h2 {
    color: var(--warm-yellow);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    color: var(--aqua-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--midnight-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .burger {
        display: flex;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .benefits-grid,
    .features-grid,
    .service-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 10px;
    }

    .section {
        padding: 2rem 0;
    }
}

