* {
    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.7;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #ffffff;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    padding: 40px 0;
    background: #ffffff;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 12px;
    color: #999999;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.hero-minimal {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 40px;
}

.hero-content-center {
    text-align: center;
    margin-bottom: 80px;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -2px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 24px;
    color: #666666;
    margin-bottom: 50px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 20px 50px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #333333;
    transform: translateY(-2px);
}

.hero-image-container {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.value-proposition {
    padding: 150px 40px;
    background: #f9f9f9;
}

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

.section-title-minimal {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

.text-large {
    font-size: 22px;
    line-height: 1.8;
    color: #666666;
    font-weight: 300;
}

.services-minimal {
    padding: 150px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-card-minimal {
    display: flex;
    gap: 80px;
    align-items: center;
}

.service-card-minimal:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 1;
    min-width: 0;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
}

.service-content-minimal {
    flex: 1;
}

.service-content-minimal h3 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.service-content-minimal p {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.select-service-btn {
    padding: 16px 40px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.contact-form-section {
    padding: 150px 40px;
    background: #f9f9f9;
}

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

.form-container-minimal h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.cta-submit {
    padding: 20px 50px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-submit:hover {
    background: #333333;
    transform: translateY(-2px);
}

.trust-section {
    padding: 150px 40px;
}

.trust-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -1px;
}

.text-center {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    color: #666666;
}

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

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

.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #999999;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #999999;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #666666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .nav-links {
        gap: 25px;
        font-size: 14px;
    }

    .hero-title-large {
        font-size: 40px;
    }

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

    .section-title-minimal {
        font-size: 36px;
    }

    .service-card-minimal {
        flex-direction: column !important;
        gap: 40px;
    }

    .service-content-minimal h3 {
        font-size: 32px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}