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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #546e7a;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #34495e;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.split-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

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

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

.split-content p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #546e7a;
    max-width: 540px;
}

.services-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-header p {
    font-size: 19px;
    color: #546e7a;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-split {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    min-height: 320px;
}

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

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

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

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

.service-details h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a252f;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #546e7a;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.form-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

.form-container-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: #1a252f;
}

.form-intro p {
    font-size: 18px;
    color: #546e7a;
}

.contact-form {
    flex: 1;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #34495e;
}

.trust-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

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

.trust-content-centered h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #1a252f;
}

.trust-content-centered p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #546e7a;
}

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

.footer-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col a:hover {
    color: #3498db;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-btn.accept:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject:hover {
    opacity: 0.9;
}

.about-hero {
    padding: 90px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-hero p {
    font-size: 20px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.8;
}

.about-image-section {
    padding: 60px 60px;
    background-color: #f8f9fa;
}

.about-image-wrap {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.services-page-hero {
    padding: 90px 60px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.services-page-content {
    padding: 80px 60px;
}

.contact-hero {
    padding: 90px 60px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
}

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

.contact-info {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 50px;
}

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

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #546e7a;
}

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

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #546e7a;
    line-height: 1.8;
}

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

.legal-page li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #546e7a;
    line-height: 1.7;
}

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

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

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

.thanks-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #546e7a;
}

.thanks-content .selected-service {
    font-weight: 700;
    color: #2c3e50;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-content a:hover {
    background-color: #34495e;
}