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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e67e22;
    --accent-color: #1a3d5c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: white;
}

.btn-accept:hover {
    background-color: #d97216;
    transform: translateY(-2px);
}

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

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--accent-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #d97216;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.intro-cards {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.card-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.card-intro h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.card-intro p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.story-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.story-visual {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.story-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.problem-amplification {
    padding: 90px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.problem-text {
    flex: 1;
    min-width: 320px;
}

.problem-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: bold;
}

.problem-visual {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.insight-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.insight-card-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.insight-label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.insight-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.insight-item {
    flex: 1;
    min-width: 240px;
}

.insight-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

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

.testimonials {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    margin-bottom: 24px;
}

.testimonial-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.products-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    flex: 1;
    min-width: 340px;
    max-width: 380px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.product-info > p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--text-medium);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    color: var(--text-medium);
}

.btn-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d97216;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.trust-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 15px;
    color: var(--text-medium);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.about-content {
    padding: 80px 0;
}

.content-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.content-text {
    flex: 1;
    min-width: 320px;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.content-image {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.values-section {
    margin: 80px 0;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.mission-statement {
    margin: 80px 0;
}

.mission-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.mission-box h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.mission-box p {
    font-size: 19px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.process-section {
    margin: 80px 0;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.process-card {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    padding: 30px 20px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
}

.process-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
}

.sustainability-section {
    margin-top: 80px;
}

.sustainability-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.sustainability-text {
    flex: 1;
    min-width: 320px;
}

.sustainability-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.sustainability-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.sustainability-list {
    list-style: none;
    margin-top: 24px;
}

.sustainability-list li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
}

.sustainability-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

.sustainability-image {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.services-overview {
    padding: 80px 0;
}

.intro-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.service-image-large {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-content-detailed {
    flex: 1;
    min-width: 320px;
}

.service-content-detailed h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-tagline {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-content-detailed > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-content-detailed h3 {
    font-size: 20px;
    margin: 24px 0 16px;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 26px;
    position: relative;
    color: var(--text-medium);
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 20px;
}

.service-pricing {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

.btn-cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #d97216;
    transform: translateY(-2px);
}

.comparison-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 600;
    font-size: 15px;
}

.comparison-table td {
    font-size: 14px;
    color: var(--text-medium);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-info-block {
    flex: 1;
    min-width: 320px;
}

.contact-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-detail {
    display: flex;
    gap: 20px;
}

.detail-icon {
    font-size: 32px;
}

.detail-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.email-note {
    font-size: 14px;
    margin-top: 8px;
}

.hours-table {
    width: 100%;
    margin: 16px 0;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-color);
}

.hours-table td {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-medium);
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-note {
    font-size: 13px;
    margin-top: 12px;
    font-style: italic;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 320px;
}

.map-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    height: 100%;
}

.map-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.map-placeholder-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.directions-info h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.directions-info p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-section {
    padding: 100px 0;
}

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

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
}

.selected-service-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d97216;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-reminder {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.contact-reminder h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-reminder p {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-medium);
}

.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.last-updated,
.subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.cookie-table td {
    font-size: 14px;
    color: var(--text-medium);
}

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

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

    .section-title {
        font-size: 32px;
    }

    .card-intro h2 {
        font-size: 28px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

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

    .service-detail-card:nth-child(even) {
        flex-direction: row;
    }

    .insight-card-large {
        padding: 40px 30px;
    }

    .form-card {
        padding: 30px 20px;
    }
}