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

.header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

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

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

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

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

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

.hero-image {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    width: fit-content;
}

.cta-primary:hover {
    background: #1a252f;
}

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

.intro-image {
    flex: 1;
    background: #95a5a6;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 5rem 4rem;
    background: #fff;
}

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

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

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

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

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

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

.service-split {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

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

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

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

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-select {
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #2980b9;
}

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

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

.form-section {
    background: #ecf0f1;
    padding: 5rem 2rem;
}

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

.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: #5a6c7d;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    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: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a252f;
}

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

.values-content {
    flex: 1;
    padding: 4rem;
    background: #34495e;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.values-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-image {
    flex: 1;
    background: #95a5a6;
    overflow: hidden;
}

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

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

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

.btn-reject {
    background: #7f8c8d;
    color: #fff;
}

.btn-reject:hover {
    background: #5a6c7d;
}

.page-header {
    background: #34495e;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

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

.page-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content ul li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.contact-grid {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
    background: #ecf0f1;
    padding: 3rem;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

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

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

.about-image {
    flex: 1;
    height: 500px;
    background: #95a5a6;
    overflow: hidden;
    border-radius: 8px;
}

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

.team-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

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

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

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

.thanks-container .cta-primary {
    margin: 0 auto;
}

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

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

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}