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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2874c7;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    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;
}

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

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

.nav-menu a {
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.hero-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 19px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

.hero-image img {
    width: 100%;
    height: 500px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.value-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

.value-image {
    flex: 1;
    background-color: var(--bg-light);
}

.value-image img {
    width: 100%;
    height: 400px;
}

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.value-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.stats-section {
    background-color: var(--primary-color);
    padding: 60px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-card {
    text-align: center;
    color: var(--bg-white);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.features-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.features-text {
    flex: 1;
}

.features-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.feature-item {
    margin-bottom: 36px;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.features-image {
    flex: 1;
    background-color: var(--bg-light);
}

.features-image img {
    width: 100%;
    height: 500px;
}

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

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

.trust-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.trust-content > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.testimonials {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    text-align: left;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-gray);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.services-preview-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.services-preview-split.reverse {
    flex-direction: row-reverse;
}

.services-preview-image {
    flex: 1;
    background-color: var(--bg-light);
}

.services-preview-image img {
    width: 100%;
    height: 400px;
}

.services-preview-text {
    flex: 1;
}

.services-preview-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.services-preview-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-link {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 16px;
    transition: color 0.3s ease;
}

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

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

.form-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 28px;
    line-height: 1.7;
}

.form-benefits {
    list-style: disc;
    padding-left: 24px;
}

.form-benefits li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.form-container {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p,
.footer-column li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 12px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    color: var(--bg-white);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

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

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

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

.cookie-accept:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-header-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.header-text {
    flex: 1;
}

.header-text h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.header-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.header-image {
    flex: 1;
    background-color: var(--bg-light);
}

.header-image img {
    width: 100%;
    height: 400px;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.service-item-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.service-description {
    flex: 2;
}

.service-description h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-description p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    font-size: 16px;
    color: var(--text-gray);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

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

.service-pricing {
    flex: 1;
}

.price-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-period {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.price-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.price-button:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.service-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-image img {
    width: 100%;
    height: 400px;
}

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

.comparison-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.comparison-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.comparison-intro p {
    font-size: 18px;
    color: var(--text-gray);
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    border-collapse: collapse;
}

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

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

.comparison-table th {
    font-weight: 600;
    font-size: 16px;
}

.comparison-table td {
    font-size: 15px;
    color: var(--text-gray);
}

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

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

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

.about-hero-text h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

.about-hero-image img {
    width: 100%;
    height: 400px;
}

.mission-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-split.reverse {
    flex-direction: row-reverse;
}

.mission-image {
    flex: 1;
    background-color: var(--bg-light);
}

.mission-image img {
    width: 100%;
    height: 400px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.mission-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.story-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: var(--bg-light);
}

.story-image img {
    width: 100%;
    height: 400px;
}

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.team-split-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: var(--bg-white);
}

.team-image img {
    width: 100%;
    height: 400px;
}

.team-description {
    flex: 1;
}

.team-description h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-description p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.certifications-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.certifications-split.reverse {
    flex-direction: row-reverse;
}

.certifications-image {
    flex: 1;
    background-color: var(--bg-light);
}

.certifications-image img {
    width: 100%;
    height: 400px;
}

.certifications-text {
    flex: 1;
}

.certifications-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.certifications-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.why-us-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.why-us-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.why-item {
    flex: 1;
    min-width: 250px;
    padding: 36px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.why-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.why-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-split {
    background-color: var(--primary-color);
    padding: 80px 20px;
}

.cta-split .cta-text,
.cta-split .cta-action {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-split h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-split p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-split .cta-button {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-split .cta-button:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.contact-header {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-card h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--bg-light);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 500px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px;
    color: var(--bg-white);
}

.map-overlay p {
    font-size: 16px;
    line-height: 1.6;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.faq-column {
    flex: 1;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 24px;
}

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

.faq-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.thanks-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.thanks-content > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 36px;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.button-primary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
    background-color: var(--bg-light);
}

.thanks-image img {
    width: 100%;
    height: 400px;
}

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

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.step-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.legal-container h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-container ul {
    list-style: disc;
    padding-left: 32px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-container strong {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .hero-content,
    .value-split,
    .features-split,
    .services-preview-split,
    .form-split,
    .page-header-split,
    .service-item-split,
    .about-hero-split,
    .mission-split,
    .story-split,
    .team-split-layout,
    .certifications-split,
    .contact-split,
    .faq-split,
    .thanks-section,
    .testimonials,
    .steps-grid {
        flex-direction: column;
    }

    .hero-text h1,
    .header-text h1,
    .about-hero-text h1 {
        font-size: 32px;
    }

    .value-text h2,
    .features-text h2,
    .services-preview-text h2,
    .form-intro h2 {
        font-size: 28px;
    }

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

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

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

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

    .values-grid,
    .why-us-grid {
        flex-direction: column;
    }

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