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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.navigation {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-visual {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

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

.intro-section {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.intro-left {
    order: 2;
    padding: 3rem 1.5rem;
}

.intro-left img {
    width: 100%;
    border-radius: 6px;
}

.intro-right {
    order: 1;
    padding: 3rem 1.5rem;
}

.intro-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.intro-right p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.cta-inline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    transition: var(--transition);
}

.cta-inline:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.features-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
}

.feature-content {
    margin-bottom: 2rem;
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-visual img {
    border-radius: 6px;
}

.experience-section {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.experience-visual {
    padding: 3rem 1.5rem;
}

.experience-visual img {
    border-radius: 6px;
}

.experience-content {
    padding: 3rem 1.5rem;
}

.experience-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.experience-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

blockquote {
    background: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    border-radius: 4px;
}

blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.services-preview {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.services-header p {
    color: var(--text-light);
    font-size: 1.15rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-details {
    padding: 2.5rem 1.5rem;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.duration {
    color: var(--text-light);
    font-size: 0.95rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cta-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.trust-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.trust-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.trust-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-section {
    padding: 4rem 1.5rem;
    background: var(--primary-color);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.booking-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.cta-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.cta-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.final-cta {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.final-cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-final {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1.1rem 3rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.05rem;
}

.cta-final:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.6rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.cookie-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background: #c0392b;
}

.cookie-btn.reject {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.cookie-btn.reject:hover {
    background: var(--border-color);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: var(--transition);
    z-index: 999;
    display: none;
    font-size: 0.95rem;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.page-hero {
    padding: 6rem 1.5rem 4rem;
    background: var(--bg-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
}

.story-left {
    margin-bottom: 2rem;
}

.story-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.story-left p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-right img {
    border-radius: 6px;
}

.philosophy-section {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    padding: 4rem 1.5rem;
}

.philosophy-visual {
    margin-bottom: 2rem;
}

.philosophy-visual img {
    border-radius: 6px;
}

.philosophy-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.team-section {
    padding: 4rem 1.5rem;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.team-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.member-role {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.values-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.values-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.values-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.value-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.testimonials-about {
    padding: 4rem 1.5rem;
}

.testimonials-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 4px;
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 1.5rem;
    background: var(--primary-color);
    text-align: center;
}

.cta-about-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-about-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.services-intro {
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

.services-intro-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-feature {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
}

.intro-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.intro-feature p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.services-detailed {
    padding: 4rem 1.5rem;
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
}

.service-detail-visual {
    margin-bottom: 2rem;
}

.service-detail-visual img {
    border-radius: 6px;
    width: 100%;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-content > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.service-highlights li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.booking-info {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.booking-info-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.cta-services {
    padding: 5rem 1.5rem;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.cta-services-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 1.5rem;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual img {
    border-radius: 6px;
}

.contact-cta {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-faq {
    padding: 4rem 1.5rem;
}

.faq-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.thanks-hero {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
}

.thanks-content {
    margin-bottom: 3rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.thanks-content > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-color);
    color: var(--bg-white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.next-steps strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.next-steps p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

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

.thanks-visual {
    order: -1;
    margin-bottom: 2rem;
}

.thanks-visual img {
    border-radius: 6px;
}

.thanks-info {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.thanks-info-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.legal-page {
    padding: 4rem 1.5rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-content,
    .hero-visual {
        flex: 1;
    }

    .hero-content {
        padding: 6rem 3rem;
    }

    .intro-section {
        flex-direction: row;
    }

    .intro-left,
    .intro-right {
        flex: 1;
        padding: 5rem 3rem;
    }

    .intro-left {
        order: 1;
    }

    .intro-right {
        order: 2;
    }

    .features-split {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding: 6rem 3rem;
    }

    .feature-content,
    .feature-visual {
        flex: 1;
    }

    .experience-section {
        flex-direction: row;
        align-items: center;
    }

    .experience-visual,
    .experience-content {
        flex: 1;
        padding: 5rem 3rem;
    }

    .service-item {
        flex-direction: row;
    }

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

    .service-visual {
        flex: 1;
    }

    .service-visual img {
        height: 100%;
    }

    .service-details {
        flex: 1;
        padding: 3rem;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .about-story {
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 3rem;
    }

    .story-left,
    .story-right {
        flex: 1;
        margin-bottom: 0;
    }

    .philosophy-section {
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 3rem;
    }

    .philosophy-visual,
    .philosophy-content {
        flex: 1;
        margin-bottom: 0;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .values-split {
        flex-direction: row;
    }

    .value-item {
        flex: 1;
    }

    .intro-features {
        flex-direction: row;
    }

    .intro-feature {
        flex: 1;
    }

    .service-detail-item {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

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

    .service-detail-visual,
    .service-detail-content {
        flex: 1;
        margin-bottom: 0;
    }

    .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .contact-split {
        flex-direction: row;
        gap: 5rem;
    }

    .contact-info,
    .contact-visual {
        flex: 1;
    }

    .thanks-hero {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
        padding: 6rem 3rem;
    }

    .thanks-content,
    .thanks-visual {
        flex: 1;
        margin-bottom: 0;
    }

    .thanks-visual {
        order: 2;
    }

    .thanks-actions {
        flex-direction: row;
    }

    .info-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    .services-header h2 {
        font-size: 3rem;
    }

    .trust-item {
        min-width: calc(25% - 1.5rem);
    }

    .team-member {
        min-width: calc(25% - 1.5rem);
    }
}
