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

:root {
    --primary-dark: #1a2332;
    --primary-blue: #2d4263;
    --accent-teal: #00b4a6;
    --accent-green: #4ecb71;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e1e8ed;
}

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

.ad-disclosure {
    background-color: #fff8e1;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

.top-nav {
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

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

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

.nav-menu a:hover {
    color: var(--accent-teal);
}

.split-hero {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--primary-dark);
    color: var(--white);
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,180,166,0.2) 0%, rgba(78,203,113,0.2) 100%);
}

.hero-left h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-teal);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #00998c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,180,166,0.3);
}

.split-section {
    display: flex;
    min-height: 70vh;
}

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

.split-left {
    background-color: var(--light-bg);
}

.split-right {
    background-color: var(--white);
}

.split-image-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.15);
}

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-teal);
    font-weight: 700;
    margin-bottom: 16px;
}

.split-section h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 40px 32px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--white);
}

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

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

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.price-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
}

.select-service-btn:hover {
    background-color: var(--primary-dark);
}

.select-service-btn.selected {
    background-color: var(--accent-green);
}

.form-section {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.form-container p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    font-size: 16px;
    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(--accent-teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--accent-teal);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #00998c;
    box-shadow: 0 8px 20px rgba(0,180,166,0.3);
}

.submit-btn:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
}

.footer {
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 70px 60px 30px;
}

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

.footer-section h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-teal);
}

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

.contact-info-section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

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

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

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

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

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

.thanks-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.back-home {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--white);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 24px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
}

.cookie-text a {
    color: var(--accent-teal);
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: var(--accent-teal);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #00998c;
}

.cookie-reject {
    background-color: var(--border-color);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background-color: #d1d8dd;
}

.about-hero {
    padding: 120px 60px 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

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

.about-split {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

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

.about-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.values-section {
    background-color: var(--light-bg);
    padding: 100px 60px;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

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

.value-item {
    flex: 1;
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
}

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

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

.disclaimer-section {
    background-color: #fff8e1;
    padding: 40px 60px;
    margin: 80px 0;
    border-left: 5px solid #ffa726;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #856404;
    margin-bottom: 8px;
}
