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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    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;
    min-width: 300px;
}

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

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

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

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    padding: 32px 40px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px;
    position: relative;
    background: #f8f8f8;
}

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

.hero-content h1 {
    font-size: 96px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    font-weight: 300;
}

.hero-image {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e0e0e0;
}

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

.intro-section {
    padding: 160px 40px;
    background: #ffffff;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-container h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.intro-container p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.8;
}

.services-preview {
    padding: 160px 40px;
    background: #f8f8f8;
}

.services-preview h2 {
    font-size: 56px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -1px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin-bottom: 32px;
}

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

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    padding: 0 24px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 24px;
    flex: 1;
}

.service-card .price {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    display: block;
    margin-bottom: 24px;
    padding: 0 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #333333;
}

.trust-section {
    padding: 160px 40px;
    background: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 56px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -1px;
}

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

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

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

.testimonials-section {
    padding: 160px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 56px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -1px;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 320px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #999;
}

.form-section {
    padding: 160px 40px;
    background: #f8f8f8;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.form-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
}

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

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #333333;
}

.btn-submit:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 80px 40px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.thanks-container p {
    font-size: 20px;
    color: #666;
    margin-bottom: 24px;
    max-width: 600px;
}

.thanks-details {
    background: #f8f8f8;
    padding: 32px;
    margin: 40px 0;
    max-width: 500px;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 12px;
}

.btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.3s ease;
    margin-top: 32px;
}

.btn-home:hover {
    background: #333333;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px;
}

.page-container h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.page-container h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 20px;
}

.page-container h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.page-container ul {
    margin: 20px 0;
    padding-left: 24px;
}

.page-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.page-container a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-info {
    background: #f8f8f8;
    padding: 40px;
    margin: 40px 0;
}

.contact-info h2 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .intro-container h2,
    .services-preview h2,
    .trust-content h2,
    .testimonials-section h2,
    .form-container h2,
    .page-container h1 {
        font-size: 36px;
    }

    .nav-menu {
        gap: 20px;
    }

    .services-grid,
    .trust-grid,
    .testimonials-container {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

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

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

    .nav-container {
        flex-wrap: wrap;
        gap: 16px;
    }

    .ad-label {
        order: 3;
        width: 100%;
        text-align: center;
    }
}