* {
    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;
}

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #e0e6ed;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4a9eff;
}

.hero {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.intro-cards {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    background: #d1d5db;
    height: 200px;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a2332;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #6c757d;
}

.benefits {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.benefits-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.benefit-text {
    flex: 1.2;
}

.benefit-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #4b5563;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.3rem;
}

.benefit-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 12px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.process {
    background: #1a2332;
    padding: 5rem 2rem;
    color: #ffffff;
}

.process h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: #2d3748;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #4a9eff;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: #cbd5e0;
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-secondary:hover {
    transform: scale(1.05);
}

.testimonials {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid #4a9eff;
}

.testimonial-card p {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author {
    display: block;
    font-weight: 600;
    color: #1a2332;
}

.order-form-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.form-container > p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a2332;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.main-footer {
    background: #1a2332;
    color: #e0e6ed;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4a9eff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #5a6268;
}

.services-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-list {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.service-image {
    flex: 0 0 280px;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.service-details p {
    color: #6c757d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
    margin-bottom: 1rem;
}

.about-hero {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: 3rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.about-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2.2rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.team-member h3 {
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 1rem;
}

.contact-hero {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.contact-hero h1 {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 3rem;
    color: #1a2332;
}

.contact-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #6c757d;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #e8ecef;
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a2332;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer p {
    color: #856404;
    margin: 0;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

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

    .benefits-layout {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-card {
        flex: 1 1 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-item {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }

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

    .contact-content {
        flex-direction: column;
    }
}