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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.ad-notice {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

.hero-minimal {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.hero-content {
    padding: 120px 60px 80px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.intro-text {
    padding: 140px 60px;
    background: #fafafa;
}

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

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

.large-text {
    font-size: 26px;
    line-height: 1.8;
    color: #2c2c2c;
    font-weight: 300;
    text-align: center;
}

.process-visual {
    padding: 100px 0;
    background: #ffffff;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.process-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
}

.process-number {
    font-size: 72px;
    font-weight: 100;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1;
}

.process-item h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

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

.services-preview {
    padding: 140px 60px;
    background: #fafafa;
}

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

.services-list-minimal {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

.service-minimal {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 40px;
}

.service-minimal h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-minimal p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 20px;
    max-width: 600px;
}

.service-price {
    font-size: 24px;
    color: #2c2c2c;
    font-weight: 300;
}

.link-subtle {
    display: inline-block;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    border-bottom: 1px solid #2c2c2c;
    padding-bottom: 3px;
    transition: opacity 0.3s;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.link-subtle:hover {
    opacity: 0.6;
}

.image-statement {
    position: relative;
    height: 700px;
    overflow: hidden;
    background-color: #d0d0d0;
}

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

.statement-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 600px;
}

.statement-overlay blockquote {
    font-size: 36px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.form-section {
    padding: 140px 60px;
    background: #ffffff;
}

.form-section h2 {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #666666;
    margin-bottom: 60px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #666666;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #d0d0d0;
    font-size: 18px;
    font-family: 'Georgia', 'Times New Roman', serif;
    background: transparent;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #2c2c2c;
}

.btn-primary {
    display: inline-block;
    padding: 18px 60px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

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

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

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #888888;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 30px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.btn-accept:hover {
    background: #ffffff;
    color: #2c2c2c;
}

.btn-reject:hover {
    opacity: 0.7;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-image {
    flex: 0 0 400px;
    height: 300px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-info {
    flex: 1;
    padding-top: 20px;
}

.service-info h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

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

.service-info .service-price {
    font-size: 28px;
    color: #2c2c2c;
    font-weight: 300;
}

.about-section {
    padding: 140px 60px;
    background: #ffffff;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
}

.about-text p {
    font-size: 18px;
    color: #666666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-image {
    flex: 0 0 500px;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.contact-section {
    padding: 140px 60px;
    background: #fafafa;
}

.contact-grid {
    display: flex;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 50px;
}

.info-block h3 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 15px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.info-block p {
    font-size: 18px;
    color: #2c2c2c;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    height: 600px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 100px 60px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 60px;
    margin-bottom: 25px;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page p,
.legal-page li {
    font-size: 16px;
    color: #666666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.thanks-section {
    padding: 200px 60px;
    background: #fafafa;
    text-align: center;
}

.thanks-section h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 30px;
}

.thanks-section p {
    font-size: 22px;
    color: #666666;
    margin-bottom: 60px;
}

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

    .nav-links {
        gap: 25px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

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

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

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

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}