* {
    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: #2c2c2c;
    background-color: #ffffff;
}

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

.cookie-banner.show {
    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 {
    margin: 0;
    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 28px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

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

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
}

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

.nav-links a:hover {
    color: #4a90e2;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    background-color: #fafafa;
}

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

.hero-content-minimal h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    color: #666;
    margin-bottom: 48px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 18px 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #333333;
}

.hero-image-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e8e8e8;
}

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

.intro-statement {
    padding: 120px 40px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-statement h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.3;
}

.intro-statement p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
}

.services-preview {
    padding: 120px 40px;
    background-color: #f5f5f5;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
}

.service-cards-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    padding: 0;
    border-radius: 4px;
    max-width: 380px;
    flex: 1;
    min-width: 320px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 28px 28px 16px;
    font-weight: 500;
}

.service-card p {
    margin: 0 28px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-card .price {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 24px 28px 20px;
}

.select-service {
    width: calc(100% - 56px);
    margin: 0 28px 28px;
    padding: 14px 24px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #357abd;
}

.about-inline {
    padding: 120px 40px;
    background-color: #ffffff;
}

.about-inline h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 32px;
}

.about-inline p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #444;
}

.form-section-minimal {
    padding: 120px 40px;
    background-color: #fafafa;
}

.form-section-minimal h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.testimonial {
    margin-bottom: 48px;
    padding: 40px;
    background-color: #f5f5f5;
    border-left: 4px solid #1a1a1a;
    border-radius: 2px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.disclaimer-section {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

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

.thanks-content h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 24px;
}

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

.thanks-content .selected-service {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 32px 0;
}

.thanks-content a {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-content a:hover {
    background-color: #333333;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
}

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

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

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.legal-content ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

.legal-content ul li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #444;
}

.contact-page-content {
    padding: 80px 40px;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

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

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 24px;
}

.services-header p {
    font-size: 20px;
    color: #666;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 24px;
}

.about-content-section {
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-content-section h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 28px;
}

.about-content-section p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-image {
    max-width: 1000px;
    margin: 60px auto;
    border-radius: 4px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

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

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

    .nav-links {
        gap: 24px;
    }

    .service-cards-minimal {
        flex-direction: column;
    }

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

    .intro-statement h2,
    .about-inline h2,
    .form-section-minimal h2,
    .trust-section h2 {
        font-size: 32px;
    }

    .services-preview h2 {
        font-size: 36px;
    }
}