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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.nav-links a {
    font-size: 0.95rem;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f8d;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-left: 1rem;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,95,141,0.85), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 2rem;
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #2c5f8d;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #1e4a6f;
    transform: translateY(-2px);
}

.intro-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

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

.benefits-section {
    padding: 5rem 5%;
    background-color: #fff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 3rem;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.benefit-icon {
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f0f4f8;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-header h2 {
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.05rem;
    color: #555;
}

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

.service-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.3rem;
    color: #2c5f8d;
    margin-bottom: 0.8rem;
}

.service-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1rem;
}

.btn-select-service {
    width: 100%;
    background-color: #2c5f8d;
    color: #fff;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #1e4a6f;
}

.process-section {
    padding: 5rem 5%;
    background-color: #fff;
}

.process-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.2rem;
    color: #2c5f8d;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 0.95rem;
    color: #666;
}

.testimonials-section {
    padding: 5rem 5%;
    background-color: #2c5f8d;
    color: #fff;
}

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

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

.testimonial {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

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

.cta-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-section {
    padding: 5rem 5%;
    background-color: #fff;
}

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

.info-block {
    flex: 1;
    padding: 2rem;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.3rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #f9f9f9;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 5% 1.5rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.footer-column p {
    font-size: 0.9rem;
    color: #ccc;
}

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

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

.footer-column ul li a {
    font-size: 0.9rem;
    color: #ccc;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.95);
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-cookie-accept {
    background-color: #27ae60;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cookie-accept:hover {
    background-color: #1e8449;
}

.btn-cookie-reject {
    background-color: #555;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cookie-reject:hover {
    background-color: #333;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 1.8rem;
    color: #2c5f8d;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: #e67e22;
    color: #fff;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.page-hero {
    background: linear-gradient(135deg, #2c5f8d, #1e4a6f);
    color: #fff;
    padding: 4rem 5%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 5%;
    background-color: #fff;
}

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

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

.about-text-block h2 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 1.5rem;
}

.about-text-block p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-wrapper img {
    flex: 1;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.values-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.team-section {
    padding: 5rem 5%;
    background-color: #fff;
}

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

.team-layout img {
    flex: 1;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.team-description {
    flex: 1;
}

.team-description h2 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 1.5rem;
}

.team-description p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.experience-section {
    padding: 5rem 5%;
    background-color: #2c5f8d;
    color: #fff;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

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

.stat-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.approach-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

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

.approach-content h2 {
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.commitment-section {
    padding: 5rem 5%;
    background-color: #fff;
}

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

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 1.5rem;
}

.commitment-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.commitment-wrapper img {
    flex: 1;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.cta-about {
    padding: 5rem 5%;
    background-color: #f0f4f8;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.service-detail-image img {
    border-radius: 8px;
    background-color: #e0e0e0;
}

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

.service-detail-content h2 {
    font-size: 1.8rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.service-pricing-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e67e22;
}

.additional-info {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.additional-info h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 3rem;
}

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

.info-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #2c5f8d;
    margin-bottom: 0.8rem;
}

.info-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.cta-services {
    padding: 5rem 5%;
    background-color: #2c5f8d;
    color: #fff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-main {
    padding: 4rem 5%;
    background-color: #fff;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e0e0e0;
    min-height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.map-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-additional {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

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

.additional-block {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.additional-block h3 {
    font-size: 1.3rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.additional-block p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.contact-faq {
    padding: 4rem 5%;
    background-color: #fff;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c5f8d;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c5f8d;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.thanks-section {
    padding: 5rem 5%;
    background-color: #fff;
    min-height: 500px;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 2rem;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    text-align: left;
}

.next-step {
    flex: 1;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.next-step .step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.next-step h3 {
    font-size: 1.1rem;
    color: #2c5f8d;
    margin-bottom: 0.5rem;
}

.next-step p {
    font-size: 0.9rem;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d35400;
}

.btn-secondary {
    display: inline-block;
    background-color: #2c5f8d;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #1e4a6f;
}

.thanks-contact-info {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.thanks-contact-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.email-info {
    font-weight: 600;
    color: #2c5f8d;
}

.legal-page {
    padding: 3rem 5%;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c5f8d;
    margin-bottom: 1.5rem;
}

.legal-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.legal-container h2 {
    font-size: 1.6rem;
    color: #2c5f8d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c5f8d;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1e4a6f;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table thead {
    background-color: #f0f4f8;
}

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.cookies-table th {
    font-weight: 600;
    color: #2c5f8d;
}

.cookies-table td {
    color: #666;
}

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

    .intro-wrapper,
    .about-wrapper,
    .team-layout,
    .commitment-wrapper,
    .contact-layout {
        flex-direction: column;
    }

    .benefits-grid,
    .values-container,
    .services-container,
    .process-steps,
    .testimonials-wrapper,
    .info-grid,
    .stats-grid,
    .info-blocks,
    .additional-wrapper,
    .next-steps-grid {
        flex-direction: column;
    }

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

    .service-detail {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}