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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.main-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2C3E50;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #34495E;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #7F8C8D;
    padding: 0.3rem 0.7rem;
    background-color: #ECF0F1;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27AE60;
    color: #FFFFFF;
}

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

.btn-reject {
    background-color: #95A5A6;
    color: #FFFFFF;
}

.btn-reject:hover {
    background-color: #7F8C8D;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

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

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498DB;
    color: #FFFFFF;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

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

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

.intro-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 1.1rem;
    color: #34495E;
    margin-bottom: 1rem;
}

.services-showcase {
    padding: 5rem 5%;
    background-color: #F8F9FA;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #7F8C8D;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto 3rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.service-info h3 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: #34495E;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #27AE60;
    margin-bottom: 1.5rem;
}

.service-image {
    flex: 1;
    min-height: 300px;
}

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

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #3498DB;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2980B9;
}

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

.process-content {
    max-width: 1300px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

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

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: #F8F9FA;
    border-radius: 8px;
}

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

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2C3E50;
}

.process-step p {
    font-size: 0.95rem;
    color: #34495E;
}

.form-section {
    padding: 5rem 5%;
    background-color: #ECF0F1;
}

.form-split {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #34495E;
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.5rem 0;
    color: #27AE60;
    font-weight: 500;
}

.form-benefits li:before {
    content: "✓ ";
    margin-right: 0.5rem;
}

.form-container {
    flex: 1;
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27AE60;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

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

.testimonial-card {
    flex: 1;
    background-color: #34495E;
    padding: 2.5rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3498DB;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

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

.btn-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #FFFFFF;
    color: #3498DB;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
}

.main-footer {
    background-color: #2C3E50;
    color: #ECF0F1;
    padding: 4rem 5% 2rem;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #BDC3C7;
}

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

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

.footer-column ul li a {
    color: #BDC3C7;
    font-size: 0.9rem;
}

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

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495E;
    color: #95A5A6;
    font-size: 0.9rem;
}

.page-hero {
    padding: 5rem 5%;
    background-color: #3498DB;
    text-align: center;
    color: #FFFFFF;
}

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

.page-hero p {
    font-size: 1.3rem;
    color: #ECF0F1;
}

.services-detailed {
    padding: 3rem 5%;
    background-color: #FFFFFF;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto 4rem;
    background-color: #F8F9FA;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1.2;
    padding: 3rem;
}

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

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: #2C3E50;
    margin: 2rem 0 1rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: 600;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

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

.additional-services {
    padding: 5rem 5%;
    background-color: #ECF0F1;
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

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

.additional-item {
    flex: 1;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.additional-item p {
    font-size: 0.95rem;
    color: #7F8C8D;
    margin-bottom: 1rem;
}

.additional-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3498DB;
}

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

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.service-cta p {
    font-size: 1.1rem;
    color: #7F8C8D;
    margin-bottom: 2rem;
}

.about-intro-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.1rem;
    color: #34495E;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

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

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

.value-card {
    flex: 1;
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.value-card p {
    font-size: 1rem;
    color: #34495E;
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

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

.team-intro p {
    font-size: 1.1rem;
    color: #7F8C8D;
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.team-image {
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.team-role {
    font-size: 1rem;
    color: #3498DB;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member p {
    font-size: 0.95rem;
    color: #7F8C8D;
}

.technology-section {
    padding: 5rem 5%;
    background-color: #F8F9FA;
}

.technology-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.technology-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.technology-image img {
    width: 100%;
    height: 100%;
}

.technology-text {
    flex: 1;
}

.technology-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.technology-text p {
    font-size: 1.1rem;
    color: #34495E;
    margin-bottom: 1rem;
}

.technology-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2C3E50;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495E;
}

.tech-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: 600;
}

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

.approach-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.approach-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7F8C8D;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.approach-item {
    flex: 1;
    background-color: #F8F9FA;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.approach-item p {
    font-size: 1rem;
    color: #34495E;
    line-height: 1.7;
}

.stats-section {
    padding: 5rem 5%;
    background-color: #3498DB;
}

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

.stat-item {
    flex: 1;
    text-align: center;
    color: #FFFFFF;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ECF0F1;
}

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

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

.about-cta p {
    font-size: 1.1rem;
    color: #7F8C8D;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 3rem 5%;
    background-color: #FFFFFF;
}

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

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

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

.contact-info-block > p {
    font-size: 1.1rem;
    color: #34495E;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2C3E50;
}

.contact-item p {
    font-size: 1rem;
    color: #34495E;
    line-height: 1.7;
}

.email-display {
    color: #7F8C8D;
}

.contact-note {
    background-color: #F8F9FA;
    padding: 2rem;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.contact-note p {
    font-size: 0.95rem;
    color: #34495E;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.faq-section {
    padding: 5rem 5%;
    background-color: #F8F9FA;
}

.faq-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

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

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

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

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

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

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #7F8C8D;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 5%;
    background-color: #F8F9FA;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #27AE60;
    margin-bottom: 2rem;
}

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

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

.service-confirmation {
    background-color: #E8F5E9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #2C3E50;
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2C3E50;
}

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

.step {
    flex: 1;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
}

.step .step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498DB;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    color: #34495E;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #95A5A6;
    color: #FFFFFF;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7F8C8D;
}

.thanks-contact {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 1rem;
    color: #34495E;
    margin-bottom: 0.5rem;
}

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

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

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

.legal-date {
    font-size: 0.95rem;
    color: #7F8C8D;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2C3E50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #34495E;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495E;
}

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

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

.legal-container ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #34495E;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-split,
    .about-intro-split,
    .technology-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .process-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .approach-grid,
    .stats-grid,
    .additional-grid,
    .next-steps {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

@media (max-width: 768px) {
    .navigation {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .section-header-center h2,
    .process-content h2,
    .testimonials-section h2,
    .cta-content h2,
    .values-section h2,
    .team-section h2,
    .approach-section h2,
    .faq-section h2,
    .additional-services h2 {
        font-size: 2rem;
    }
}