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

:root {
    --primary-color: #d4af37;
    --secondary-color: #2c2c2c;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white);
}

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

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

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

.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.hero-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(44,44,44,0.05) 100%);
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.intro-cards {
    padding: 80px 20px;
    background: var(--white);
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

.story-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 20px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.btn-service {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s;
}

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

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

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

.why-choose {
    padding: 80px 20px;
    background: var(--light-bg);
}

.why-choose h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.reason-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.reason-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.reason-item p {
    color: #666;
    line-height: 1.7;
}

.booking-section {
    padding: 80px 20px;
    background: var(--white);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.form-header p {
    font-size: 18px;
    color: #666;
}

.booking-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 25px;
}

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

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

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

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 50px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8962e 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
}

.cta-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.main-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    color: #ccc;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.sticky-cta a {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(44,44,44,0.05) 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-hero p {
    font-size: 18px;
    color: #666;
}

.services-full {
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

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

.service-visual {
    flex: 1;
    min-width: 350px;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-detail-content {
    flex: 1;
    min-width: 350px;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.service-detail-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.cta-services {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.about-intro {
    padding: 80px 20px;
    background: var(--white);
}

.about-content-card {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-content-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.about-content-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.values-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

.values-grid,
.values-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.team-grid,
.team-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card,
.team-member {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover,
.team-member:hover {
    transform: translateY(-5px);
}

.team-image,
.member-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img,
.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3,
.team-member h3 {
    font-size: 22px;
    margin: 20px 0 10px;
    color: var(--secondary-color);
}

.team-role,
.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p,
.team-member p {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
}

.philosophy-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.certifications-section {
    padding: 80px 20px;
    background: var(--white);
}

.certifications-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.cert-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cert-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.cert-item p {
    color: #666;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.contact-info-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-card p {
    color: #666;
    line-height: 1.7;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.location-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.location-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.location-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.map-notice,
.map-overlay {
    text-align: center;
    color: #666;
}

.map-notice svg {
    margin-bottom: 15px;
}

.map-notice p,
.map-overlay p {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

.map-directions {
    font-size: 16px;
    color: #888;
    font-weight: 400;
    margin-top: 10px;
}

.directions-section {
    padding: 80px 20px;
    background: var(--white);
}

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

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

.direction-item {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.direction-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.direction-item p {
    color: #666;
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.contact-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.contact-info-card,
.contact-text-card {
    flex: 1;
    min-width: 350px;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-content p {
    color: #666;
    line-height: 1.7;
}

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

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

.contact-text-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-text-card h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-text-card p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.contact-text-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-text-card a:hover {
    text-decoration: underline;
}

.contact-note {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-note h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-note ul {
    list-style: none;
    padding: 0;
}

.contact-note ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.contact-note ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.faq-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.thanks-hero {
    padding: 100px 20px;
    background: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.thanks-info {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

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

.next-steps {
    padding: 80px 20px;
    background: var(--light-bg);
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-card p {
    color: #666;
    line-height: 1.7;
}

.prepare-section {
    padding: 80px 20px;
    background: var(--white);
}

.prepare-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-align: center;
}

.prepare-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
    text-align: center;
}

.tips-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.tips-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

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

.legal-header {
    padding: 60px 20px 40px;
    background: var(--light-bg);
    text-align: center;
}

.legal-header h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-update {
    color: #888;
    font-style: italic;
}

.legal-content {
    padding: 60px 20px;
    background: var(--white);
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

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

.legal-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.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: 30px 0;
    box-shadow: var(--shadow);
}

.cookie-table thead {
    background: var(--secondary-color);
    color: var(--white);
}

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

.cookie-table tbody tr:nth-child(even) {
    background: var(--light-bg);
}

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

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

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .section-header h2,
    .why-choose h2,
    .team-section h2,
    .values-section h2 {
        font-size: 28px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 14px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-visual {
        min-width: 100%;
        height: 300px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

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

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .legal-header h1 {
        font-size: 28px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-menu {
        gap: 10px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}