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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

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

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

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

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

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

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

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

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
}

.hero-content-minimal {
    text-align: center;
    z-index: 2;
    padding: 4rem 2rem;
    max-width: 900px;
}

.hero-content-minimal h1 {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
}

.hero-image-minimal {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e0e0e0;
}

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

.content-spacious {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

.text-block-centered h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.text-block-centered p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-text-offset {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.offset-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.offset-image {
    flex: 1;
    background-color: #d5d5d5;
}

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

.offset-text {
    flex: 1;
}

.offset-text h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.offset-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.philosophy-section {
    padding: 7rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.philosophy-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.collection-preview {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

.collection-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.collection-grid {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.collection-card {
    flex: 0 1 350px;
    background-color: #fafafa;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
}

.card-image {
    margin-bottom: 1.5rem;
    background-color: #e0e0e0;
}

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

.collection-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.collection-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.testimonial-inline {
    padding: 5rem 2rem;
    background-color: #f0f0f0;
}

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

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

.testimonial-content cite {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.form-section {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1.25rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.science-section {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

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

.science-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.science-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.75;
}

.footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

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

.references {
    list-style: decimal;
    padding-left: 1.25rem;
}

.references li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.references li a {
    color: #4a9eff;
    text-decoration: none;
}

.references li a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.75rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    line-height: 1.6;
}

.contact-page {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.contact-content h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.info-block h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.info-block p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.services-page {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-item {
    display: flex;
    gap: 3rem;
    background-color: #ffffff;
    padding: 3rem;
    align-items: center;
}

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

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

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-details p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.about-page {
    background-color: #ffffff;
}

.about-hero {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.8;
}

.about-section {
    padding: 5rem 2rem;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.about-image-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #d5d5d5;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.thanks-content .btn-primary {
    margin-top: 2rem;
}

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

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .offset-container,
    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

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