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

:root {
    --primary-color: #2B5B84;
    --secondary-color: #E8934F;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #28A745;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

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

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

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

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

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43,91,132,0.3) 0%, transparent 100%);
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-description {
    font-size: 19px;
    margin-bottom: 35px;
    color: #4A4A4A;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,147,79,0.4);
}

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

.section-content {
    flex: 1;
    padding: 70px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

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

h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: var(--primary-color);
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(50% - 30px);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
}

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

.service-image {
    width: 45%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.service-info {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.service-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.service-select {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 15px;
}

.service-select:hover {
    background-color: #1E4159;
}

.service-select.selected {
    background-color: var(--success-color);
}

.form-section {
    background-color: var(--bg-light);
    padding: 70px 6%;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.selected-service-display {
    background-color: #E8F5E9;
    padding: 16px;
    border-radius: 5px;
    margin-bottom: 24px;
    border-left: 4px solid var(--success-color);
}

footer {
    background-color: #1A1A1A;
    color: #B0B0B0;
    padding: 60px 6% 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 18px;
}

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

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

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

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

.disclaimer {
    background-color: #FFF9E6;
    padding: 40px 6%;
    border-top: 2px solid #FFE066;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #5A5A5A;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26,26,26,0.97);
    color: var(--text-light);
    padding: 25px 6%;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

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

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

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

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

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

.cookie-accept {
    background-color: var(--success-color);
    color: var(--text-light);
}

.cookie-reject {
    background-color: #6C757D;
    color: var(--text-light);
}

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

.thanks-container {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 6%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.thanks-box {
    max-width: 650px;
    text-align: center;
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 70px;
    color: var(--success-color);
    margin-bottom: 25px;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 6%;
}

.legal-content h1 {
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 10px;
}

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

.contact-info {
    flex: 1;
    padding: 70px 6%;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
    background-size: cover;
    background-position: center;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
}
