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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #40916c;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

.header-main {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2d6a4f;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d6a4f;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

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

.hero-text-container {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 40px;
}

.hero-heading {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-subtext {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.split-visual-left {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.problem-amplify {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.problem-amplify h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.problem-amplify > .container-narrow > p {
    font-size: 18px;
    margin-bottom: 60px;
    text-align: center;
    opacity: 0.9;
}

.insight-cards {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.insight-number {
    font-size: 56px;
    font-weight: 800;
    color: #52b788;
    margin-bottom: 16px;
}

.insight-item p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.solution-reveal {
    padding: 100px 40px;
}

.solution-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.solution-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.solution-visual {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 12px;
}

.solution-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.testimonials-inline h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-block {
    background-color: #ffffff;
    padding: 40px 48px;
    margin-bottom: 32px;
    border-left: 4px solid #2d6a4f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #6c757d;
}

.benefits-stacked {
    padding: 100px 40px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-stacked h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    color: #1a1a1a;
}

.benefit-row {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 8px;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.collection-preview {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.collection-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a4a4a;
}

.collection-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.collection-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.collection-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.collection-card-content {
    padding: 32px;
}

.collection-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.collection-card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.card-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.card-cta:hover {
    background-color: #40916c;
    transform: scale(1.05);
}

.pricing-reveal {
    padding: 100px 40px;
}

.pricing-reveal h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.pricing-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a4a4a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.pricing-item {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 32px;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
    border-color: #2d6a4f;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-item.featured {
    border-color: #2d6a4f;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.15);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.pricing-details {
    margin-bottom: 28px;
}

.pricing-details p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.price {
    font-size: 38px;
    font-weight: 800;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    font-size: 17px;
    text-align: center;
    margin-bottom: 48px;
    opacity: 0.9;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #ffffff;
    color: #2d6a4f;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.trust-footer {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.trust-footer h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #1a1a1a;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: 700;
    font-size: 20px;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff8e6;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #6c5a00;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.7;
}

.page-hero {
    padding: 100px 40px 80px;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 100px 40px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 8px;
}

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

.approach-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.approach-section > .container-narrow {
    margin-bottom: 60px;
}

.approach-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.approach-section > .container-narrow > p {
    font-size: 18px;
    text-align: center;
    color: #4a4a4a;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.approach-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.values-section {
    padding: 100px 40px;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.values-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 8px;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.values-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

.team-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: #1a1a1a;
}

.team-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.cta-about {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #ffffff;
}

.cta-about h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background-color: #ffffff;
    color: #2d6a4f;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.services-intro {
    padding: 60px 40px;
}

.services-intro p {
    font-size: 18px;
    text-align: center;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail {
    padding: 80px 40px;
}

.service-detail:nth-child(odd) {
    background-color: #f8f9fa;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 8px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price {
    font-size: 38px;
    font-weight: 800;
    color: #2d6a4f;
    margin-bottom: 28px;
}

.service-description p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.service-description h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-description ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-description ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-cta:hover {
    background-color: #40916c;
    transform: scale(1.05);
}

.guarantee-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.guarantee-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.guarantee-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.guarantee-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-info-section {
    padding: 100px 40px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.email-display {
    font-weight: 600;
    color: #1a1a1a;
}

.contact-visual {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.contact-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contact-note {
    padding: 32px;
    background-color: #f8f9fa;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.contact-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.contact-cta:hover {
    background-color: #40916c;
}

.location-info {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.location-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: #1a1a1a;
}

.location-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    color: #2d6a4f;
}

.thanks-message {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-highlight {
    font-weight: 700;
    color: #2d6a4f;
}

.next-steps {
    margin-bottom: 60px;
}

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

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #2d6a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.thanks-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #40916c;
}

.thanks-contact {
    text-align: center;
    font-size: 15px;
    color: #6c757d;
}

.legal-page {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.legal-content strong {
    color: #1a1a1a;
    font-weight: 700;
}

.authority-info {
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 6px;
    margin: 32px 0;
    border-left: 4px solid #2d6a4f;
}

.authority-info h3 {
    margin-top: 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.cookies-table thead {
    background-color: #2d6a4f;
    color: #ffffff;
}

.cookies-table th {
    padding: 14px;
    text-align: left;
    font-weight: 700;
}

.cookies-table td {
    padding: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table tbody tr:hover {
    background-color: #f8f9fa;
}

.browser-instructions {
    margin: 32px 0;
}

.browser-instructions h4 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #2d6a4f;
}

.browser-instructions p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 12px;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .split-visual-left,
    .solution-grid,
    .about-content,
    .values-content,
    .benefit-row,
    .contact-layout,
    .service-content {
        flex-direction: column;
    }

    .benefit-row.reverse {
        flex-direction: column;
    }

    .collection-card,
    .pricing-item,
    .approach-item,
    .guarantee-item {
        flex: 1 1 100%;
    }

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

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

    .legal-container {
        padding: 32px 24px;
    }

    .thanks-links {
        flex-direction: column;
    }

    .thanks-link {
        text-align: center;
    }
}