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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    color: #ffffff;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.intro-image-block {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.problem-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.problem-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.benefits-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.testimonial-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #34495e;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102,126,234,0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #34495e;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dcdde1;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #5568d3;
}

.final-cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.thanks-details {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-details p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-next-steps ul {
    text-align: left;
    margin: 0 auto;
    max-width: 500px;
}

.thanks-next-steps li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.btn-return {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-block img {
    flex: 1;
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #ecf0f1;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.mission-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.mission-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #34495e;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.member-image {
    margin-bottom: 1rem;
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ecf0f1;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-member p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.values-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #667eea;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    text-align: center;
}

.cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto;
}

.services-detail-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #34495e;
}

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

.service-pricing {
    margin-bottom: 2rem;
}

.service-pricing .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-right: 0.5rem;
}

.service-pricing .period {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.faq-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.contact-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #667eea;
    font-weight: 700;
}

.info-block p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.info-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.info-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.info-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.info-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.info-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.6;
}

.directions-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.directions-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.directions-grid {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
    font-weight: 700;
}

.direction-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.last-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #667eea;
    font-weight: 700;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
    color: #34495e;
    line-height: 1.6;
}

.legal-page a {
    color: #667eea;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #5568d3;
}

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

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #dcdde1;
}

.cookie-table th {
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

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

    .nav-links {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .approach-grid,
    .story-block,
    .contact-wrapper,
    .service-detail-card {
        flex-direction: column;
    }

    .directions-grid {
        flex-direction: column;
    }

    .benefits-grid,
    .services-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}