* {
    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: #ffffff;
}

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

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

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

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
    margin-left: 1rem;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eaf0;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

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

.intro-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eaf0;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

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

.services-highlight {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #1a252f;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
}

.price {
    padding: 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.process-content {
    flex: 1;
    padding: 3rem;
    background-color: #f8f9fa;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.step p {
    color: #555;
}

.process-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eaf0;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.trust-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    flex: 1 1 300px;
}

.feature h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.feature p {
    color: #ecf0f1;
    line-height: 1.8;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

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

.form-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eaf0;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-content {
    flex: 1;
    padding: 3rem;
    background-color: #f8f9fa;
}

.form-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-content > p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    background-color: #fef9e7;
    padding: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    border-left: 4px solid #f39c12;
}

.disclaimer-content p {
    color: #7d6608;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #2c3e50;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2980b9;
}

.cookie-reject {
    background-color: #ecf0f1;
    color: #2c3e50;
}

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

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

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-centered h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-content-centered p {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.9;
}

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-item {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem 0;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

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

.service-detail-content h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

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

.select-service-btn {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.cta-content-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-button-alt {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-alt:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eaf0;
}

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

.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

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

.mission-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eaf0;
}

.mission-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

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

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.value-item p {
    color: #555;
    line-height: 1.8;
}

.expertise-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.expertise-content {
    flex: 1;
    padding: 3rem;
}

.expertise-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.expertise-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.expertise-item p {
    color: #555;
    line-height: 1.8;
}

.expertise-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eaf0;
}

.expertise-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.numbers-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.numbers-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.number-item {
    flex: 1 1 200px;
    text-align: center;
}

.number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.number-item p {
    color: #ecf0f1;
    font-size: 1.1rem;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

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

.approach-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eaf0;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.cta-about {
    background-color: #3498db;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.95;
}

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

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.95;
}

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
}

.contact-details {
    flex: 1;
    padding: 2rem;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

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

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

.contact-additional {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.additional-content {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

.help-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-option {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.help-option h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.help-option p {
    color: #555;
    line-height: 1.8;
}

.faq-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

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

.faq-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

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

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

.service-confirmation {
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #27ae60;
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.thanks-next ul {
    list-style: none;
    padding: 0;
}

.thanks-next ul li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: #555;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

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

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem 5rem;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ecf0f1;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #555;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
    font-style: italic;
    color: #7f8c8d;
}

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

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

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

.cookie-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .process-split,
    .form-split,
    .about-hero-split,
    .mission-split,
    .expertise-split,
    .approach-split,
    .contact-info-split,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-visual,
    .intro-visual,
    .process-visual,
    .form-visual,
    .about-hero-visual,
    .mission-visual,
    .expertise-visual,
    .approach-visual,
    .contact-visual,
    .service-detail-visual {
        min-height: 400px;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .about-hero-content h1,
    .hero-content-centered h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .values-container h2,
    .numbers-container h2 {
        font-size: 1.8rem;
    }

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

    .trust-features {
        flex-direction: column;
    }

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

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

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