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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.35rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.intro-left {
    flex: 1;
    background-color: #95a5a6;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.intro-right {
    flex: 1;
    padding: 4rem;
}

.intro-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555555;
    line-height: 1.8;
}

.services-grid {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    background-color: #ecf0f1;
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 1.75rem;
}

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

.service-info p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.form-section-split {
    display: flex;
    background-color: #f8f9fa;
}

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

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

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555555;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #2c3e50;
}

.form-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.form-right {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 5rem 3rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 3rem 1.5rem;
}

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

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-column p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333333;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #888888;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #2ecc71;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #555555;
}

.thanks-service {
    display: inline-block;
    margin: 1.5rem 0;
    padding: 1rem 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

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

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555555;
    line-height: 1.7;
}

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

.legal-container ul li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #555555;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-left {
    flex: 1;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h1 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
}

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

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #ecf0f1;
}

.contact-right {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 3rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ecf0f1;
}

.about-split {
    display: flex;
}

.about-left {
    flex: 1;
    padding: 4rem;
}

.about-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555555;
    line-height: 1.8;
}

.about-right {
    flex: 1;
    background-color: #7f8c8d;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.services-header {
    background-color: #f8f9fa;
    padding: 4rem 3rem;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

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

.service-price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .form-section-split,
    .contact-split,
    .about-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right,
    .form-left,
    .form-right,
    .contact-left,
    .contact-right,
    .about-left,
    .about-right {
        min-height: 400px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
    }
}