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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.main-nav a:hover {
    color: #d4af37;
}

.ad-notice {
    background-color: #d4af37;
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-visual {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f8f8;
    border-left: 4px solid #d4af37;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #444;
}

.story-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.story-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.story-card {
    flex: 1 1 350px;
    max-width: 420px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-text {
    padding: 30px;
}

.card-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.card-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.problem-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.problem-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.problem-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.insight-box {
    background-color: #fff9e6;
    border-left: 5px solid #d4af37;
    padding: 25px;
    margin-top: 30px;
}

.insight-box p {
    font-size: 17px;
    color: #333;
    margin: 0;
}

.trust-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #fff;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 400px;
    background-color: #2a2a2a;
    padding: 35px;
    border-radius: 8px;
    border-top: 3px solid #d4af37;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: #ddd;
}

.testimonial-author {
    font-size: 14px;
    color: #d4af37;
    font-weight: 600;
}

.benefits-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.centered-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.science-section {
    padding: 60px 0;
    background-color: #fff;
}

.science-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.science-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.science-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.science-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.science-content a:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 80px 0;
    background-color: #fff;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-price {
    font-size: 26px;
    font-weight: bold;
    color: #d4af37;
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.references-section {
    padding: 60px 0;
    background-color: #fff;
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.references-list li {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background-color: #fff9e6;
    border: 2px solid #d4af37;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ddd;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.5;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #444;
    color: #fff;
}

.btn-reject:hover {
    background-color: #555;
}

.page-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #ddd;
}

.about-content,
.services-detail,
.contact-content,
.legal-page {
    padding: 60px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 50px;
}

.about-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.about-visual {
    max-width: 1000px;
    margin: 50px auto;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.values-section,
.process-section,
.team-section,
.commitment-section {
    max-width: 900px;
    margin: 60px auto;
}

.values-section h2,
.process-section h2,
.team-section h2,
.commitment-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.value-item {
    flex: 1 1 250px;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.process-section p,
.team-section p,
.commitment-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info-box {
    flex: 1 1 350px;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-note {
    background-color: #fff9e6;
    padding: 20px;
    border-left: 4px solid #d4af37;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: #444;
    margin: 0;
}

.contact-map {
    flex: 1 1 400px;
}

.map-placeholder {
    height: 100%;
    min-height: 350px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #888;
}

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

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-details p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: #333;
    margin: 0;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #d4af37;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

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

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

.btn-secondary {
    background-color: #f5f5f5;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

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

.legal-page {
    background-color: #fff;
}

.legal-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

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

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.5;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cookie-table thead {
    background-color: #1a1a1a;
    color: #fff;
}

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

.cookie-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.cta-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .section-title,
    .centered-title {
        font-size: 28px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}