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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem 0;
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    border: 1px solid #ddd;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.hero-minimal {
    margin-top: 6rem;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fafafa;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin-bottom: 6rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-text {
    font-size: 1.25rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    background: #e8e8e8;
}

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

.intro-space {
    padding: 10rem 4rem;
    background: #ffffff;
}

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

.centered-content h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
}

.centered-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}

.services-preview {
    padding: 4rem 0;
    background: #fafafa;
}

.service-card {
    max-width: 1200px;
    margin: 0 auto 8rem auto;
    display: flex;
    gap: 6rem;
    align-items: center;
    padding: 0 4rem;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.price {
    display: inline-block;
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}

.contact-inline {
    padding: 10rem 4rem;
    background: #ffffff;
}

.minimal-form {
    max-width: 500px;
    margin: 4rem auto 0;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: #666;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-primary {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #333;
}

.about-snippet {
    padding: 10rem 4rem;
    background: #f5f5f5;
}

.large-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.text-link {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 0.3rem;
    transition: opacity 0.3s;
}

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

.footer-minimal {
    background: #1a1a1a;
    color: #ffffff;
    padding: 6rem 4rem 3rem;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
    text-decoration: none;
    display: block;
}

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

.footer-col .no-link {
    cursor: default;
}

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

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p:last-child {
    font-size: 0.85rem;
    color: #666;
}

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

.cookie-banner.active {
    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;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.page-header {
    margin-top: 6rem;
    padding: 6rem 4rem 4rem;
    background: #fafafa;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 4rem;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 3rem 0 1.5rem;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.page-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.8rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 4rem;
}

.service-block {
    text-align: center;
}

.service-block h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.service-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-block .price {
    display: block;
    font-size: 1.8rem;
    margin-top: 1rem;
}

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 4rem;
}

.contact-info {
    margin-bottom: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem;
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

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