* {
    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.6;
    color: #333;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background: #f9f9f9;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: stretch;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.hero-image-block {
    width: 55%;
    position: relative;
    background: #2c3e50;
}

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

.intro-offset {
    padding: 120px 30px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    width: 40%;
}

.intro-narrow h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.intro-wide-visual {
    width: 60%;
    position: relative;
}

.intro-wide-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0,0,0,0.75);
    padding: 24px;
    border-radius: 4px;
}

.overlay-text p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

.benefits-stagger {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 30px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefit-card.left-positioned {
    margin-right: 15%;
}

.benefit-card.right-positioned {
    margin-left: 15%;
}

.benefit-card.center-full {
    flex-direction: column;
    text-align: center;
    background: #ecf0f1;
    padding: 60px 80px;
    border-radius: 8px;
    margin: 0 10%;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.card-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.card-image {
    flex: 1;
    background: #ddd;
}

.card-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #e74c3c;
    transition: all 0.2s;
}

.inline-cta:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

.science-section {
    background: #2c3e50;
    color: #fff;
    padding: 100px 30px;
}

.science-content {
    max-width: 1200px;
    margin: 0 auto;
}

.science-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.science-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.9;
}

.science-points {
    display: flex;
    gap: 40px;
}

.point {
    flex: 1;
}

.point h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

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

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.citation:hover {
    color: #5dade2;
}

.testimonials-asymmetric {
    padding: 100px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 10%;
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.testimonial {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial.small {
    flex: 1;
    min-width: 280px;
}

.testimonial.medium {
    flex: 1.2;
    min-width: 320px;
}

.testimonial.large {
    flex: 1.5;
    min-width: 380px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial .author {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.services-form-section {
    background: #f8f9fa;
    padding: 100px 30px;
}

.form-intro {
    text-align: center;
    margin-bottom: 60px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    color: #555;
}

.service-selection-form {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.service-option {
    position: relative;
    cursor: pointer;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-content {
    border: 2px solid #e0e0e0;
    padding: 24px;
    border-radius: 8px;
    transition: all 0.3s;
    background: #fff;
    height: 100%;
}

.service-option input[type="radio"]:checked + .option-content {
    border-color: #3498db;
    background: #ebf5fb;
}

.option-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.option-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
}

.option-content .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.field-group.full-width {
    grid-column: 1 / -1;
}

.field-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 14px;
}

.field-group input,
.field-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    grid-column: 1 / -1;
    background: #27ae60;
    color: #fff;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    background: #fef5e7;
    padding: 60px 30px;
    border-top: 3px solid #f39c12;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d68910;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.references {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.references li {
    margin-bottom: 12px;
}

.references a {
    color: #3498db;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 30px 80px;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.about-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block img {
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: #ddd;
}

.story-text {
    width: 55%;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.philosophy-section {
    background: #f8f9fa;
    padding: 100px 30px;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.philosophy-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.team-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.team-member {
    flex: 1;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #ddd;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.approach-detail {
    background: #ecf0f1;
    padding: 100px 30px;
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 30px;
}

.step {
    flex: 1;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    position: relative;
    padding-top: 70px;
}

.step-number {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.values-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 30px;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.values-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.cta-about {
    background: #3498db;
    padding: 80px 30px;
}

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: #fff;
    color: #3498db;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all 0.3s;
    display: inline-block;
}

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

.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 30px 80px;
    text-align: center;
    color: #fff;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

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

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 30px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card.large-card {
    padding: 50px;
}

.service-card.medium-card {
    padding: 40px;
    margin-left: 10%;
}

.service-card.medium-card-alt {
    padding: 40px;
    margin-right: 10%;
}

.service-card.small-card {
    padding: 40px;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.service-card.small-card-alt {
    padding: 40px;
    flex-direction: column;
    max-width: 600px;
    margin-left: auto;
    margin-right: 15%;
}

.service-card.large-card-alt {
    padding: 50px;
}

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

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
}

.btn-select {
    background: #3498db;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.comparison-section {
    background: #f8f9fa;
    padding: 100px 30px;
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.comparison-guide {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.guide-item {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.guide-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

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

.faq-services {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 30px;
}

.faq-services h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.services-disclaimer {
    background: #fef5e7;
    padding: 40px 30px;
    border-top: 3px solid #f39c12;
}

.services-disclaimer p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 30px 80px;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

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

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.info-section {
    margin-bottom: 50px;
}

.info-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.info-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.info-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.email-display {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.hours-table {
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.hours-row .day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-row .time {
    color: #555;
}

.contact-visual {
    flex: 1;
    position: relative;
}

.contact-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background: #ddd;
}

.visual-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0,0,0,0.8);
    padding: 28px;
    border-radius: 8px;
}

.visual-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #fff;
}

.visual-overlay p {
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
}

.location-section {
    background: #f8f9fa;
    padding: 80px 30px;
}

.location-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.transport-info {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.transport-option {
    flex: 1;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.transport-option h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.transport-option p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.contact-faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
}

.contact-faq h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-card {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
}

.faq-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.contact-cta {
    background: #3498db;
    padding: 80px 30px;
}

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

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 30px;
}

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

.success-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-message {
    margin-bottom: 60px;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.service-confirmation {
    background: #ebf5fb;
    padding: 16px;
    border-radius: 6px;
    margin-top: 16px;
}

.service-confirmation p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

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

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    text-align: left;
}

.step-item {
    flex: 1;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

.additional-info {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
}

.additional-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.additional-info ul {
    list-style: none;
    padding-left: 0;
}

.additional-info ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.additional-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 1.4;
}

.contact-reminder {
    font-size: 16px;
    color: #555;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

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

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-content strong {
    color: #2c3e50;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-block {
        width: 100%;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .intro-narrow,
    .intro-wide-visual {
        width: 100%;
    }

    .benefit-card {
        flex-direction: column;
        margin: 0 !important;
    }

    .science-points,
    .philosophy-blocks,
    .team-grid,
    .process-steps,
    .transport-info,
    .steps-grid {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

    .story-block {
        flex-direction: column;
    }

    .story-block img,
    .story-text {
        width: 100%;
    }

    .service-card {
        flex-direction: column;
        margin: 0 !important;
    }
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 38px;
    }

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

    .form-fields {
        grid-template-columns: 1fr;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

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

    .legal-content {
        padding: 40px 30px;
    }
}