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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.5px;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 5%;
    background-color: #f5f5f5;
}

.hero-content-minimal {
    text-align: center;
    margin-bottom: 4rem;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #666;
}

.hero-image-minimal {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-image-minimal img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e0e0e0;
}

.philosophy-section {
    padding: 10rem 5%;
    background-color: #ffffff;
}

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

.philosophy-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.philosophy-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: #4a4a4a;
}

.approach-section {
    padding: 8rem 5%;
    background-color: #fafafa;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.approach-item img {
    width: 50%;
    height: auto;
    object-fit: cover;
    background-color: #e0e0e0;
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a4a4a;
}

.services-preview {
    padding: 10rem 5%;
    background-color: #ffffff;
}

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

.services-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background-color: #fafafa;
    padding: 4rem 3rem;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.service-card .price {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 400;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-select {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.services-link-wrapper {
    text-align: center;
    margin-top: 5rem;
}

.link-minimal {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-bottom: 1px solid #2c2c2c;
    padding-bottom: 0.3rem;
    transition: opacity 0.3s ease;
}

.link-minimal:hover {
    opacity: 0.7;
}

.form-section {
    padding: 10rem 5%;
    background-color: #f5f5f5;
}

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

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

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

.testimonial-section {
    padding: 10rem 5%;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.testimonial-content blockquote {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    letter-spacing: 1px;
    color: #b0b0b0;
}

.main-footer {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 5rem 5% 3rem;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #808080;
    line-height: 1.7;
}

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .approach-item {
        flex-direction: column;
        gap: 2rem;
    }

    .approach-item img {
        width: 100%;
    }

    .services-cards {
        flex-direction: column;
    }

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

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