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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.navigation a:hover {
    color: #e67e22;
}

.ad-label {
    font-size: 12px;
    color: #95a5a6;
    padding: 5px 10px;
    border: 1px solid #ecf0f1;
    border-radius: 3px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a6c7d;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-right {
    flex: 1;
    background-color: #dfe6e9;
}

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

.split-alternate {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.split-image {
    flex: 1;
    background-color: #b2bec3;
}

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

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

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.services-grid {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.services-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    min-height: 350px;
}

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

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #5a6c7d;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 25px;
}

.btn-select {
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container > p {
    text-align: center;
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    padding: 15px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    margin-bottom: 20px;
    border-radius: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.trust-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

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

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e67e22;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 20px;
    padding: 0 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.content-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.8;
}

.content-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.contact-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e67e22;
}

.detail-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 10px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-alternate,
    .service-card,
    .trust-grid,
    .footer-content,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .service-info {
        padding: 40px;
    }

    .navigation {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 36px;
    }

    .section-header h2,
    .trust-content h2 {
        font-size: 32px;
    }

    .form-row {
        flex-direction: column;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
    }
}
