* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background-color: #00b894;
    color: #fff;
}

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

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

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: #2d3436;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

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

.main-nav a:hover {
    color: #00b894;
}

.ad-disclosure {
    font-size: 12px;
    color: #b2bec3;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fff;
}

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

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

.hero-left p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 35px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #00b894;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #00a383;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

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

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

.intro-section {
    padding: 100px 40px;
    background-color: #fff;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d3436;
}

.intro-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 20px;
}

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

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

.services-showcase {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d3436;
}

.section-header-center p {
    font-size: 18px;
    color: #636e72;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 0 1 calc(33.333% - 30px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-visual {
    height: 240px;
    background-color: #dfe6e9;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3436;
}

.card-info p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 25px;
    background-color: #2d3436;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #00b894;
}

.form-section {
    padding: 100px 40px;
    background-color: #fff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2d3436;
}

.form-intro p {
    font-size: 17px;
    color: #636e72;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #fafbfc;
    padding: 40px;
    border-radius: 8px;
}

.selected-service-display {
    background-color: #00b894;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.selected-service-display strong {
    font-size: 18px;
}

.service-price-display {
    font-size: 22px;
    font-weight: 700;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    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: #00b894;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #00b894;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #00a383;
}

.trust-section {
    padding: 100px 40px;
    background-color: #2d3436;
    color: #fff;
}

.trust-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #b2bec3;
}

.trust-visual {
    flex: 1;
    background-color: #636e72;
}

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

.main-footer {
    background-color: #2d3436;
    color: #b2bec3;
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-col a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00b894;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #00b894;
}

.thanks-content p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 20px;
}

.service-summary {
    background-color: #fafbfc;
    padding: 25px;
    border-radius: 4px;
    margin: 30px 0;
}

.service-summary strong {
    color: #2d3436;
    font-size: 20px;
}

.about-hero {
    padding: 100px 40px;
    background-color: #fafbfc;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2d3436;
}

.about-hero-content p {
    font-size: 20px;
    color: #636e72;
}

.about-section {
    padding: 80px 40px;
    background-color: #fff;
}

.about-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2d3436;
}

.about-text p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 18px;
}

.about-visual {
    flex: 1;
    background-color: #dfe6e9;
}

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

.services-page {
    padding: 100px 40px;
    background-color: #fff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2d3436;
}

.services-intro p {
    font-size: 19px;
    color: #636e72;
}

.contact-page {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d3436;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3436;
}

.info-block p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 80px 40px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2d3436;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3436;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3436;
}

.legal-container p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-container ul {
    margin: 20px 0 20px 40px;
    color: #636e72;
}

.legal-container ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-container-split,
    .trust-content-split,
    .about-split,
    .contact-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

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

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