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

:root {
    --primary: #1a5f7a;
    --secondary: #159895;
    --accent: #57c5b6;
    --dark: #0d2c3d;
    --light: #f4f9f9;
    --text: #2c3e50;
    --text-light: #5a6c7d;
    --border: #d4e4e7;
    --shadow: rgba(26, 95, 122, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #ffffff;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.ad-disclosure {
    font-size: 13px;
    color: var(--text-light);
    padding: 6px 14px;
    background: var(--light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.hero-left h1 {
    font-size: 56px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 38px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: var(--light);
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: #ffffff;
    padding: 18px 42px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 18px 42px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--primary);
    color: #ffffff;
}

.split-section {
    display: flex;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

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

.split-image {
    flex: 1;
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 22px;
}

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

.services-header h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.services-header p {
    font-size: 20px;
    color: var(--text-light);
}

.service-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

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

.service-content {
    flex: 1.2;
}

.service-content h3 {
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.service-benefits {
    list-style: none;
    margin: 30px 0;
}

.service-benefits li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: var(--text);
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 28px 0 20px 0;
}

.service-image {
    flex: 1;
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

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

.btn-select-service {
    background: var(--secondary);
    color: #ffffff;
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--shadow);
}

.trust-section {
    background: var(--light);
    padding: 90px 40px;
    margin: 120px 0;
}

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

.trust-container h2 {
    font-size: 44px;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    max-width: 300px;
}

.trust-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 18px;
    color: var(--text);
}

.contact-form-section {
    max-width: 700px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-wrapper {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 50px;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.btn-submit {
    background: var(--primary);
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--shadow);
}

.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.final-cta-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.final-cta .cta-secondary {
    background: #ffffff;
    color: var(--primary);
    border: none;
}

.final-cta .cta-secondary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.site-footer {
    background: var(--dark);
    color: #ffffff;
    padding: 70px 40px 30px 40px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.75;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 40px;
    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;
    color: var(--text);
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--secondary);
    color: #ffffff;
}

.btn-accept:hover {
    background: var(--primary);
}

.btn-reject {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-reject:hover {
    background: var(--light);
}

.page-hero {
    position: relative;
    height: 500px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 40px;
}

.hero-overlay h1 {
    font-size: 58px;
    margin-bottom: 18px;
    font-weight: 800;
}

.hero-overlay p {
    font-size: 22px;
    opacity: 0.95;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

.about-content {
    flex: 1.1;
}

.about-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 28px;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

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

.values-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 46px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background: var(--light);
    border-radius: 10px;
}

.value-card h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

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

.team-image {
    flex: 1;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

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

.team-content {
    flex: 1.1;
}

.team-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

.cta-about {
    background: var(--light);
    padding: 80px 40px;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-header-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.services-header-content h1 {
    font-size: 54px;
    margin-bottom: 18px;
    font-weight: 800;
}

.services-header-content p {
    font-size: 22px;
    opacity: 0.95;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: flex-start;
}

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

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

.service-tag {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 22px;
}

.service-includes {
    margin: 35px 0;
    padding: 30px;
    background: var(--light);
    border-radius: 8px;
}

.service-includes h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing-box {
    margin-top: 35px;
    padding: 30px;
    background: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-align: center;
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

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

.services-cta {
    background: var(--dark);
    padding: 90px 40px;
    text-align: center;
    color: #ffffff;
}

.services-cta-content h2 {
    font-size: 44px;
    margin-bottom: 18px;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.contact-hero-content h1 {
    font-size: 54px;
    margin-bottom: 16px;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

.contact-main-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 70px;
}

.contact-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--light);
    padding: 35px;
    border-radius: 10px;
}

.contact-card h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 700;
}

.contact-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.contact-note {
    padding: 25px;
    background: #fff4e6;
    border-left: 4px solid var(--accent);
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1.2;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    height: 550px;
}

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

.contact-why {
    background: var(--light);
    padding: 80px 40px;
}

.contact-why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-why-content h2 {
    font-size: 42px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.why-grid {
    display: flex;
    gap: 40px;
}

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

.why-item h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-item p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content {
    padding: 60px;
    background: var(--light);
    border-radius: 12px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px auto;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.thanks-service-info {
    margin: 30px 0;
}

.selected-service-text {
    font-size: 18px;
    color: var(--text);
    padding: 18px;
    background: #ffffff;
    border-radius: 6px;
    border-left: 4px solid var(--secondary);
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.step-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.thanks-contact {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid var(--border);
}

.thanks-contact p {
    font-size: 15px;
    color: var(--text-light);
}

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

.legal-content {
    background: #ffffff;
}

.legal-content h1 {
    font-size: 46px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-split,
    .split-section,
    .service-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-main-split {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

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

    .hero-left h1,
    .hero-overlay h1,
    .services-header-content h1,
    .contact-hero-content h1 {
        font-size: 36px;
    }

    .trust-grid,
    .values-grid,
    .why-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}
