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

.main-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
}

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

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

.main-nav a:hover {
    color: #1a5f7a;
}

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.9rem;
    background: #ecf0f1;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #d6e4ea;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #145270;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 4rem;
}

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

.intro-image {
    flex: 1;
    background: #e8f1f5;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.services-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

.services-header p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

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

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

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

.service-image {
    height: 240px;
    background: #d6e4ea;
}

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

.service-info {
    padding: 1.8rem;
}

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #145270;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 4rem;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
}

.form-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    padding: 0.8rem 1.2rem;
    background: #e8f1f5;
    border-left: 4px solid #1a5f7a;
    font-weight: 500;
    color: #2c3e50;
}

.form-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a5f7a;
}

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

.btn-submit:hover {
    background: #145270;
}

.testimonials {
    padding: 5rem 2rem;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: 600;
    color: #1a5f7a;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(236, 240, 241, 0.2);
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 1.5rem auto 0;
    text-align: center;
    padding-top: 1.5rem;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #5dade2;
}

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

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

.btn-accept {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    opacity: 0.8;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.thanks-details {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
}

.about-content {
    flex: 1.2;
}

.about-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

.about-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background: #e8f1f5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
}

.services-intro p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.8rem 0 0.8rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #5a6c7d;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .about-split {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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