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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 500;
}

.main-nav {
    background-color: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #e8e8e8;
}

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

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

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

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

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

.hero-minimal {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 40px;
}

.hero-content {
    margin-bottom: 80px;
}

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

.hero-subtitle {
    font-size: 24px;
    color: #7f8c8d;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    margin-bottom: 120px;
    background-color: #e8e8e8;
}

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

.intro-section {
    max-width: 800px;
    margin: 0 auto 150px;
    padding: 0 40px;
    text-align: center;
}

.large-text {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    color: #2c3e50;
}

.services-preview {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 40px;
}

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

.services-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
}

.service-image {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8e8e8;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 300;
    color: #c9a961;
    margin-bottom: 20px;
}

.service-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #2c3e50;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #c9a961;
    border-bottom-color: #c9a961;
}

.value-proposition {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.value-content {
    flex: 1;
}

.value-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.value-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
}

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

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

.cta-section {
    background-color: #2c3e50;
    padding: 120px 40px;
    text-align: center;
    margin-bottom: 150px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 50px;
}

.cta-button {
    background-color: #c9a961;
    color: #ffffff;
    padding: 18px 60px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b89851;
}

.form-section {
    max-width: 700px;
    margin: 0 auto 150px;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #d5d5d5;
    background-color: #ffffff;
    font-family: inherit;
}

.submit-button {
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 18px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a252f;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333333;
    font-size: 13px;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #d5d5d5;
    padding: 30px 40px;
    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: 15px;
    line-height: 1.6;
    color: #2c3e50;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1a252f;
}

.cookie-reject {
    background-color: #e8e8e8;
    color: #2c3e50;
}

.cookie-reject:hover {
    background-color: #d5d5d5;
}

.page-hero {
    max-width: 1200px;
    margin: 100px auto 120px;
    padding: 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.philosophy-section {
    max-width: 900px;
    margin: 0 auto 150px;
    padding: 0 40px;
}

.philosophy-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.team-section {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 40px;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.team-image {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e8e8;
}

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

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

.team-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.values-section {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 40px;
}

.service-detail {
    display: flex;
    gap: 100px;
    align-items: center;
    margin-bottom: 120px;
}

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

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 36px;
    font-weight: 300;
    color: #c9a961;
    margin: 30px 0;
}

.service-cta {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1a252f;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 40px;
    display: flex;
    gap: 100px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 60px;
}

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

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

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

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

.contact-text {
    max-width: 900px;
    margin: 0 auto 150px;
    padding: 0 40px;
}

.contact-text-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.contact-text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.thanks-section {
    max-width: 1200px;
    margin: 100px auto 150px;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-confirmation {
    font-size: 18px;
    color: #c9a961;
    margin-bottom: 30px;
    font-weight: 500;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-content a {
    color: #c9a961;
    text-decoration: underline;
}

.back-button {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #1a252f;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 100px auto 150px;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.last-updated {
    margin-top: 50px;
    font-style: italic;
    color: #95a5a6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #d5d5d5;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 500;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 25px;
    }

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

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

    .value-proposition,
    .about-content,
    .service-detail,
    .contact-section,
    .thanks-section {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}