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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7ab5;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #dce1e6;
}

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

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: var(--bg-white);
}

.hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 550px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

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

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

.intro-text {
    flex: 1;
    padding: 4rem 3rem;
    background-color: var(--bg-white);
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.services-preview {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

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

.services-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-icon img {
    width: 100%;
    height: 250px;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-price {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
}

.tech-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
}

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

.tech-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tech-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

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

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

.connectivity-section {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.connectivity-visual {
    flex: 1;
    background-color: var(--primary-color);
}

.connectivity-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.connectivity-info {
    flex: 1;
    padding: 4rem 3rem;
}

.connectivity-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.connectivity-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

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

.cta-form-section {
    display: flex;
    align-items: stretch;
    background-color: var(--bg-white);
}

.form-container {
    flex: 1;
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.main-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-visual {
    flex: 1;
    background-color: var(--primary-color);
}

.form-visual img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.trust-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.trust-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.trust-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    align-items: center;
}

.about-hero-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.about-hero-content h1 {
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

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

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

.about-story {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

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

.story-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

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

.story-visual img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.values-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-dark);
    font-size: 1rem;
}

.approach-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
}

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

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

.approach-text {
    flex: 1;
    padding: 4rem 3rem;
}

.approach-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.expertise-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.expertise-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.expertise-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.expertise-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.expertise-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.services-hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.services-hero h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    margin-bottom: 3rem;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-color);
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.price-value {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
}

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

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

.cta-services {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-services h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.contact-hero h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-split {
    display: flex;
    align-items: stretch;
    background-color: var(--bg-white);
}

.contact-info {
    flex: 1;
    padding: 4rem 3rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.contact-block p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.location-info {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.location-info h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.location-split {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.location-text {
    flex: 1;
}

.location-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.location-image {
    flex: 1;
    background-color: var(--primary-color);
}

.location-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
}

.thanks-section {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.thanks-info {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thanks-visual {
    flex: 1;
    background-color: var(--primary-color);
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--bg-light);
    font-size: 0.95rem;
}

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

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

.footer-section a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--bg-light);
    margin-bottom: 0;
}

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

.footer-bottom p {
    color: var(--bg-light);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.cookie-btn.reject:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .tech-split,
    .connectivity-section,
    .cta-form-section,
    .about-hero-split,
    .about-story,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .location-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .tech-content,
    .connectivity-info,
    .form-container,
    .about-hero-content,
    .story-content,
    .approach-text,
    .service-detail-content,
    .contact-info,
    .location-text,
    .thanks-content {
        padding: 2rem 1.5rem;
    }

    .hero-image img,
    .intro-image img,
    .tech-image img,
    .connectivity-visual img,
    .form-visual img,
    .about-hero-image img,
    .story-visual img,
    .approach-image img,
    .service-detail-image img,
    .contact-visual img,
    .thanks-visual img {
        min-height: 350px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

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

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

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

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem;
    }

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

    .service-card {
        max-width: 100%;
    }

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

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}