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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #ffc107;
    color: #000;
    text-align: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

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

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-offset {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1 1 450px;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1 1 500px;
    position: relative;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    object-fit: cover;
    background-color: #e0e5eb;
}

.intro-card-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.card-intro-left {
    flex: 1 1 500px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-intro-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.card-intro-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.card-intro-right {
    flex: 1 1 400px;
    background-color: #f0f4f7;
    padding: 8px;
    border-radius: 12px;
}

.card-intro-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d4dce3;
}

.services-grid-asymmetric {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
}

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

.section-header-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.section-header-offset p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
}

.card-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e0e5eb;
}

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

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

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

.service-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section-offset {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 30px;
}

.form-container-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-container-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.form-container-card > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #d4dce3;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f0f4f7;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.benefits-stacked {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-block {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.benefit-left {
    flex-direction: row;
}

.benefit-right {
    flex-direction: row-reverse;
}

.benefit-center {
    flex-direction: column;
    position: relative;
}

.benefit-text {
    flex: 1 1 450px;
    padding: 30px;
}

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

.benefit-text p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.benefit-visual {
    flex: 1 1 350px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
}

.benefit-center img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    background-color: #e0e5eb;
}

.benefit-text-overlay {
    position: absolute;
    bottom: 40px;
    left: 50px;
    right: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.benefit-text-overlay h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.benefit-text-overlay p {
    font-size: 16px;
    color: #5a6c7d;
}

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

.testimonials-inline h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 17px;
    color: #5a6c7d;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.footer-main {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 30px 30px;
    margin-top: 100px;
}

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

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

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

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.7;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto;
    padding: 24px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-references {
    max-width: 1200px;
    margin: 30px auto;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-references ol {
    padding-left: 20px;
    font-size: 14px;
    color: #bdc3c7;
}

.footer-references ol li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 24px 30px;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.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 1 400px;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.page-hero {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 30px;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: flex;
    gap: 50px;
    align-items: center;
    overflow: hidden;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1 1 450px;
    background-color: #e0e5eb;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 24px;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f4f7;
    border-radius: 8px;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
    font-weight: 600;
}

.price-value {
    font-size: 24px;
    color: #27ae60;
    font-weight: 700;
}

.btn-cta {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.about-hero-split {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-hero-text {
    flex: 1 1 450px;
}

.about-hero-text h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-hero-text p {
    font-size: 20px;
    color: #5a6c7d;
}

.about-hero-image {
    flex: 1 1 500px;
    background-color: #e0e5eb;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

.story-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

.approach-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

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

.approach-card p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.values-image {
    flex: 1 1 450px;
    background-color: #e0e5eb;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

.value-item {
    margin-bottom: 28px;
}

.value-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.approach-steps {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1 1 200px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

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

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

.commitment-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.commitment-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
}

.commitment-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-about {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 18px 42px;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.3s;
}

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

.contact-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.contact-main-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.contact-info-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-card h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-note {
    font-size: 15px;
    color: #95a5a6;
    font-style: italic;
}

.contact-additional-info {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f0f4f7;
    padding: 40px;
    border-radius: 12px;
}

.contact-additional-info h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-additional-info p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-cta-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-cta-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.thanks-main-text {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.selected-service-box {
    background-color: #f0f4f7;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-box h3 {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.service-name {
    font-size: 24px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-price {
    font-size: 20px;
    color: #27ae60;
    font-weight: 600;
}

.thanks-next-steps {
    margin: 40px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.next-step p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #d5dbdb;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 30px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

.last-updated {
    font-size: 15px;
    color: #95a5a6;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

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

.cookie-table td {
    font-size: 15px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        padding: 20px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .section-header-offset h2 {
        font-size: 32px;
    }

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

    .card-intro-left {
        padding: 32px;
    }

    .form-container-card {
        padding: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

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

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

    .benefit-text-overlay {
        position: static;
        margin-top: 20px;
    }

    .approach-card,
    .step-card,
    .contact-card,
    .testimonial-card {
        flex: 1 1 100%;
    }

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

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

    .about-hero-split,
    .values-section {
        flex-direction: column;
    }

    .cta-about {
        padding: 40px 30px;
    }

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

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