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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-content {
    max-width: 540px;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.intro-split {
    display: flex;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-overview {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-details p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #4a5568;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

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

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

.cta-banner-split {
    display: flex;
    align-items: center;
    background: #2c3e50;
    padding: 60px 80px;
    max-width: 1200px;
    margin: 80px auto;
}

.cta-left {
    flex: 1.5;
    color: #ffffff;
}

.cta-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-left p {
    font-size: 18px;
}

.cta-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cta-secondary {
    background: #ffffff;
    color: #2c3e50;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s ease;
}

.cta-secondary:hover {
    background: #f8f9fa;
}

.form-section-split {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    gap: 60px;
    padding: 0 20px;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 17px;
    color: #4a5568;
}

.form-container {
    flex: 1.2;
}

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

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

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

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #229954;
}

.trust-section {
    background: #34495e;
    color: #ffffff;
    padding: 80px 20px;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
}

.main-footer {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e0;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 20px;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.values-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-split-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
}

.process-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 20px;
}

.process-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    color: #4a5568;
}

.stats-section {
    padding: 80px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.stats-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3498db;
}

.stat-label {
    font-size: 16px;
}

.services-detail-intro {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

.intro-content-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.intro-content-centered p {
    font-size: 18px;
    color: #4a5568;
}

.detailed-services {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-detail-split {
    display: flex;
    margin-bottom: 100px;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4a5568;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
}

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

.price-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.packages-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.packages-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
}

.packages-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

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

.package-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.package-card.featured {
    background: #2c3e50;
    color: #ffffff;
    transform: scale(1.05);
}

.package-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.package-card p {
    font-size: 15px;
    margin-bottom: 25px;
    color: #6c757d;
}

.package-card.featured p {
    color: #cbd5e0;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-card ul li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #e9ecef;
}

.package-card.featured ul li {
    border-bottom-color: #4a5568;
}

.package-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    text-align: center;
}

.package-card.featured .package-price {
    color: #3498db;
}

.services-cta {
    padding: 80px 20px;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.services-cta p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}

.contact-split-layout {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 20px;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

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

.contact-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-map-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 500px;
}

.contact-map-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-expectations {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-expectations h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a252f;
}

.expectations-grid {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.expectation-item {
    flex: 1;
    text-align: center;
}

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

.expectation-item p {
    font-size: 16px;
    color: #4a5568;
}

.alternate-contact {
    padding: 80px 20px;
    text-align: center;
}

.alternate-contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.alternate-contact p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

.cta-link-button {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s ease;
}

.cta-link-button:hover {
    background: #229954;
}

.thanks-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 120px 20px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.service-confirmation {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.thanks-next-steps {
    padding: 80px 20px;
    background: #f8f9fa;
}

.thanks-next-steps h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a252f;
}

.steps-timeline {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.timeline-step {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.timeline-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.timeline-step p {
    font-size: 15px;
    color: #4a5568;
}

.thanks-resources {
    padding: 80px 20px;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a252f;
}

.resources-grid {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.resource-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

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

.resource-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
}

.resource-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: #2980b9;
}

.legal-page {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

.legal-intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 40px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.legal-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.legal-table td {
    color: #4a5568;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .cta-banner-split,
    .form-section-split,
    .about-split,
    .process-split,
    .service-detail-split,
    .contact-split-layout {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1,
    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .footer-split,
    .packages-grid,
    .expectations-grid,
    .steps-timeline,
    .resources-grid,
    .values-split-grid {
        flex-direction: column;
    }

    .package-card.featured {
        transform: none;
    }
}