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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #4fc3f7;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4caf50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: #666;
    color: white;
}

.btn-reject:hover {
    background: #555;
}

.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.ad-label {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2563eb;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-container {
    position: relative;
    height: 600px;
    background-color: #1e3a5f;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(15, 23, 42, 0.75));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: #e2e8f0;
    max-width: 650px;
}

.intro-section {
    padding: 60px 0;
    background: #f8fafc;
}

.intro-grid {
    display: flex;
    gap: 40px;
}

.intro-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.intro-card h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 16px;
}

.intro-card p {
    color: #475569;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(50% - 15px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 14px 28px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #1e40af;
}

.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: #ffffff;
}

.trust-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
}

.trust-item strong {
    display: block;
    font-size: 22px;
    margin-bottom: 12px;
    color: #60a5fa;
}

.trust-item p {
    color: #cbd5e1;
    line-height: 1.7;
}

.form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
}

.form-intro {
    color: #64748b;
    margin-bottom: 30px;
}

.service-display {
    background: #eff6ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #2563eb;
}

.service-display p {
    margin: 5px 0;
    color: #1e293b;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #334155;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

.form-checkbox input {
    margin-top: 4px;
}

.form-checkbox label {
    color: #475569;
    font-size: 14px;
}

.form-checkbox a {
    color: #2563eb;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1e40af;
}

.form-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

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

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

.footer-col a:hover {
    color: #60a5fa;
}

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

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .trust-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .form-wrapper {
        padding: 30px;
    }
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
}

.thanks-content h1 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1e293b;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #334155;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #475569;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #64748b;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #64748b;
}

.contact-page {
    padding: 80px 0;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-wrapper h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1e293b;
}

.contact-info {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-box {
    flex: 1;
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
}

.contact-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1e293b;
}

.contact-box p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 8px;
}

.about-page {
    padding: 80px 0;
}

.about-hero {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-hero p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.7;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.about-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
    background-color: #e2e8f0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page {
    padding: 80px 0;
}

.services-page h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}
