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

:root {
    --primary-color: #6B4CE6;
    --secondary-color: #FF6B9D;
    --accent-color: #FFA726;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --gray-color: #6C757D;
    --success-color: #4CAF50;
    --border-radius: 12px;
    --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 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    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 {
    flex: 1;
    margin: 0;
    min-width: 280px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

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

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

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

.hero-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

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

.hero-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-main {
    flex: 1 1 calc(60% - 12px);
    min-width: 320px;
    padding: 48px;
}

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

.hero-content p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1 1 calc(40% - 12px);
    min-width: 280px;
    min-height: 300px;
    padding: 0;
}

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

.hero-stat {
    flex: 1 1 calc(30% - 12px);
    min-width: 200px;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 16px;
    margin-top: 8px;
    opacity: 0.95;
}

.hero-cta {
    flex: 1 1 calc(70% - 12px);
    min-width: 280px;
    padding: 32px;
    background: var(--accent-color);
    color: white;
}

.hero-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.hero-cta p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    text-align: center;
}

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

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

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.intro-section {
    padding: 80px 20px;
}

.intro-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.intro-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    max-width: 360px;
    padding: 40px 28px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    color: white;
}

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

.intro-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

.services-section {
    padding: 80px 20px;
    background: white;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    max-width: 380px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.service-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features span {
    background: var(--light-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-color);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--light-color);
}

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

.btn-select {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select:hover {
    background: #5a3dc4;
}

.btn-select.selected {
    background: var(--success-color);
}

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

.testimonial-content p {
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.8;
}

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

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

.process-section {
    padding: 80px 20px;
}

.process-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.process-content {
    flex: 1 1 500px;
}

.process-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.process-steps {
    margin-bottom: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-color);
}

.process-visual {
    flex: 1 1 400px;
}

.process-visual img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.benefits-section {
    padding: 80px 20px;
    background: white;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-large {
    flex: 1 1 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px;
    border-radius: var(--border-radius);
    text-align: center;
}

.benefit-large h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.benefit-large p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.benefit-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--light-color);
    padding: 32px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

.registration-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.registration-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.registration-info {
    flex: 1 1 400px;
}

.registration-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.registration-info p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 32px;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reg-benefit {
    display: flex;
    gap: 16px;
    align-items: center;
}

.reg-benefit svg {
    flex-shrink: 0;
    stroke: var(--success-color);
}

.registration-form {
    flex: 1 1 500px;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.checkbox-group label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-submit:hover {
    background: #5a3dc4;
}

.cta-banner {
    padding: 60px 20px;
    background: var(--dark-color);
    color: white;
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p,
.footer-col ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-col a:hover {
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    transition: var(--transition);
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(255, 107, 157, 0.4);
}

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

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

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.story-section {
    padding: 80px 20px;
}

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

.story-image {
    flex: 1 1 400px;
}

.story-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.story-content {
    flex: 1 1 500px;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.story-content p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.value-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
}

.team-intro {
    text-align: center;
    color: var(--gray-color);
    font-size: 18px;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(25% - 24px);
    min-width: 260px;
    max-width: 300px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    margin: 24px 20px 8px;
}

.member-role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member p {
    padding: 0 20px 24px;
    color: var(--gray-color);
    line-height: 1.6;
}

.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

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

.stat-item {
    flex: 1 1 220px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 56px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 18px;
    opacity: 0.95;
}

.cta-section {
    padding: 80px 20px;
}

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

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

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

.services-detail-section {
    padding: 60px 20px;
}

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

.service-detail-card {
    margin-bottom: 60px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-layout {
    display: flex;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1 1 400px;
    position: relative;
    min-height: 400px;
}

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

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.service-detail-content {
    flex: 1 1 500px;
    padding: 48px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-description {
    color: var(--gray-color);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-highlights {
    margin-bottom: 32px;
}

.service-highlights h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.service-highlights ul {
    list-style: none;
}

.service-highlights li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray-color);
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

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

.info-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.info-item span {
    color: var(--gray-color);
}

.service-price-box {
    background: var(--light-color);
    padding: 24px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.price-label {
    color: var(--gray-color);
    font-size: 15px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.whats-included-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.whats-included-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.included-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
}

.included-item svg {
    flex-shrink: 0;
    stroke: var(--success-color);
}

.included-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.included-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

.contact-section {
    padding: 60px 20px;
}

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

.contact-info-side {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

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

.contact-item svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-map-side {
    flex: 1 1 500px;
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
}

.contact-additional {
    background: var(--light-color);
    padding: 32px;
    border-radius: var(--border-radius);
}

.contact-additional h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-additional p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

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

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

.faq-item p {
    color: var(--gray-color);
    line-height: 1.7;
}

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

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

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

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

.thanks-message {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 32px;
}

.service-confirmation {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    font-size: 17px;
}

.thanks-details {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
}

.thanks-tips {
    background: var(--light-color);
    padding: 32px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-tips h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.thanks-tips ul {
    list-style: none;
}

.thanks-tips li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray-color);
    line-height: 1.7;
}

.thanks-tips li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 24px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-banner {
    padding: 60px 20px;
    background: var(--light-color);
}

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

.contact-banner-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-banner-content a {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.legal-wrapper h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.legal-wrapper h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

.legal-wrapper h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--dark-color);
}

.legal-wrapper p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin: 16px 0 16px 24px;
    color: var(--gray-color);
    line-height: 1.8;
}

.legal-wrapper li {
    margin-bottom: 8px;
}

.legal-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-wrapper strong {
    color: var(--dark-color);
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.gdpr-table th,
.gdpr-table td {
    padding: 16px;
    text-align: left;
}

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

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

.gdpr-table tbody tr:hover {
    background: var(--light-color);
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-main {
        padding: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .section-header h2,
    .values-section h2,
    .team-section h2,
    .faq-section h2,
    .whats-included-section h2 {
        font-size: 32px;
    }

    .service-detail-content {
        padding: 32px 24px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .service-price-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefit-large {
        padding: 40px 24px;
    }

    .benefit-large h2 {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

    .process-layout {
        gap: 40px;
    }

    .story-content h2 {
        font-size: 32px;
    }

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

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

    .gdpr-table th,
    .gdpr-table td {
        padding: 12px 8px;
    }
}

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

    .stat-number {
        font-size: 42px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}