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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content p {
    font-size: 18px;
    color: #576574;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.info-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

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

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.info-content p {
    font-size: 17px;
    color: #576574;
    margin-bottom: 15px;
}

.info-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.services-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.section-header p {
    font-size: 18px;
    color: #576574;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    padding: 0;
    width: calc(50% - 15px);
    max-width: 550px;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px 20px;
    color: #1a252f;
}

.service-card p {
    font-size: 16px;
    color: #576574;
    margin: 0 20px 15px 20px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 20px 20px;
}

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 20px 20px 20px;
    font-size: 15px;
}

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

.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.trust-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a252f;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.trust-item p {
    font-size: 16px;
    color: #576574;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 25px;
    background-color: #fef5e7;
    border-left: 4px solid #f39c12;
}

.disclaimer-section p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ecf0f1;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

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

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

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

.btn-cookie.reject:hover {
    background-color: #5d6d7e;
}

.page-hero {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
}

.page-hero p {
    font-size: 20px;
    color: #576574;
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a252f;
}

.values-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.value-item {
    flex: 1;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.value-item p {
    font-size: 16px;
    color: #576574;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 17px;
    color: #576574;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #576574;
    margin-bottom: 10px;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.price-box {
    margin: 25px 0;
    padding: 20px;
    background-color: #eafaf1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #576574;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a252f;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    color: #576574;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.legal-content {
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    color: #576574;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 16px;
    color: #576574;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #eafaf1;
    border-radius: 8px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 18px;
    color: #576574;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-content .btn-primary {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-split,
    .info-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

    .trust-grid,
    .values-grid,
    .footer-content {
        flex-direction: column;
    }

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