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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --accent-color: #3498DB;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #ECF0F1;
    --bg-white: #FFFFFF;
    --border-color: #BDC3C7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.logo a {
    color: var(--primary-color);
    text-decoration: none;
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: var(--accent-color);
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    background-color: #95A5A6;
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-cookie,
.btn-link {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

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

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-link {
    background-color: transparent;
    color: var(--accent-color);
    padding: 10px 0;
    text-decoration: underline;
}

.intro-section,
.tech-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.split-image {
    flex: 1;
    background-color: #95A5A6;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 250px;
    background-color: #95A5A6;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-center {
    text-align: center;
}

.cta-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.disclaimer {
    margin-top: 15px;
    font-size: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 28px;
}

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

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-cookie.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.page-header {
    background-color: var(--bg-light);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #95A5A6;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price-main {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.price-period {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price-extra {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.select-service {
    margin-top: 20px;
}

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

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

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.about-intro {
    padding: 80px 0;
}

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 35px;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-light);
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.team-section .split-layout {
    margin-bottom: 80px;
}

.tech-philosophy {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-content {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 50px;
}

.info-block h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 30px;
}

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

.info-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
    background-color: #95A5A6;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
}

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

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-section {
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.thanks-info {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

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

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 20px 0 20px 25px;
}

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

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-management {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.cookie-management h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.cookie-management p {
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-layout,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-text {
        padding: 40px 20px;
    }

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

    .service-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .split-content h2 {
        font-size: 28px;
    }

    .services-preview h2,
    .values-section h2,
    .team-section h2,
    .faq-section h2 {
        font-size: 32px;
    }

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

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

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

    .btn-cookie {
        width: 100%;
    }
}

img {
    max-width: 100%;
    height: auto;
}