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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

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

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

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

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2980b9;
}

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

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

.main-nav a:hover {
    color: #2980b9;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ecf0f1;
}

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

.hero-subtext {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.trust-section {
    display: flex;
    align-items: center;
}

.trust-left {
    flex: 1;
    background-color: #2c3e50;
}

.trust-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 450px;
}

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

.trust-right h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid #ecf0f1;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.service-card .price {
    padding: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e67e22;
}

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

.form-left {
    flex: 1;
    padding: 4rem 5%;
    background-color: #2980b9;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-number {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
}

.service-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #bdc3c7;
    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: #2980b9;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-split {
    display: flex;
    padding: 5rem 5%;
    background-color: #ffffff;
    gap: 3rem;
}

.testimonials-left {
    flex: 0 0 300px;
}

.testimonials-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    position: sticky;
    top: 2rem;
}

.testimonials-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #ecf0f1;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.footer-split {
    background-color: #2c3e50;
    color: white;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 4rem 5% 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #ecf0f1;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    align-items: center;
}

.about-hero-left {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.about-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
}

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

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

.story-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

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

.values-left {
    flex: 1;
    background-color: #2c3e50;
}

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

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

.values-right h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2980b9;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.numbers-section {
    padding: 5rem 5%;
    background-color: #2c3e50;
    color: white;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.numbers-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.number-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.number-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    color: #bdc3c7;
}

.team-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #7f8c8d;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-role {
    font-size: 1rem;
    color: #2980b9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #7f8c8d;
}

.cta-section {
    padding: 5rem 5%;
    background-color: #2980b9;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-header {
    padding: 4rem 5%;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.services-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-subheader {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.service-detail-split {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ecf0f1;
}

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

.service-detail-left {
    flex: 1;
    background-color: #34495e;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 450px;
}

.service-detail-right {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

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

.service-detail-right h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    border-bottom: 1px solid #ecf0f1;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
}

.service-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.guarantee-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.guarantee-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.guarantee-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.contact-header {
    padding: 4rem 5%;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

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

.contact-info-side {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.contact-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
}

.contact-map-side {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-placeholder {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 300px;
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #ffffff;
    color: #2980b9;
    text-decoration: none;
    border: 2px solid #2980b9;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2980b9;
    color: white;
}

.faq-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.thanks-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: white;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2980b9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.thanks-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #856404;
    margin: 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2.5rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2980b9;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 968px) {
    .hero-split,
    .trust-section,
    .form-section-split,
    .testimonials-split,
    .about-hero-split,
    .values-split,
    .service-detail-split,
    .contact-split-main {
        flex-direction: column;
    }

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

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .testimonials-left {
        flex: 1;
    }

    .header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .numbers-grid {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .guarantee-item {
        flex: 1 1 100%;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}