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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8743b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #767676;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
}

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

.ad-label {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    background-color: #fff3e0;
    color: #e65100;
    border-radius: 4px;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    gap: 1rem;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 99;
}

.mobile-menu a {
    padding: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.ad-label-mobile {
    font-size: 0.75rem;
    padding: 0.6rem;
    background-color: #fff3e0;
    color: #e65100;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

.mobile-menu.active {
    display: flex;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section {
    margin-bottom: 4rem;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--bg-white);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 700px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.btn-large:hover {
    background-color: #d66832;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.features-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.cards-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.apartments-showcase {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.apartments-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.apartment-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.apartment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.apartment-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.apartment-image img {
    width: 100%;
    height: 100%;
}

.apartment-info {
    padding: 2rem;
}

.apartment-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.apartment-info p {
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.apartment-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.apartment-features span {
    padding: 0.4rem 0.9rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

.testimonials-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.booking-section {
    padding: 5rem 0;
}

.booking-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.booking-info p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-point {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.info-point svg {
    color: #4caf50;
    flex-shrink: 0;
}

.info-point span {
    color: var(--text-medium);
}

.booking-form-container {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.btn-submit {
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #234a5f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.why-us-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.btn-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.3rem;
}

.btn-link:hover {
    color: #234a5f;
    border-color: #234a5f;
}

.cta-section {
    padding: 5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), #1e4a5f);
    color: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-primary-large:hover {
    background-color: #d66832;
    transform: translateY(-2px);
}

.btn-secondary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-secondary-large:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--bg-white);
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 900px;
    margin: 1rem auto 0;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 0.8rem 1.8rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #d66832;
}

.btn-secondary {
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: #2a2a2a;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), #1e4a5f);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 5rem 0;
}

.content-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.text-block p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.image-block {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-block img {
    width: 100%;
    height: 100%;
}

.values-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: #e8f5e9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    margin-bottom: 1.2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.team-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-image img {
    width: 100%;
    height: auto;
}

.services-intro {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.services-section {
    padding: 4rem 0;
}

.service-card-full {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.service-image {
    flex: 1;
    min-height: 400px;
}

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

.service-content {
    flex: 1;
    padding: 3rem;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.detail-item {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.detail-item strong {
    color: var(--text-dark);
}

.pricing-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-item {
    flex: 1;
    min-width: 120px;
    background-color: var(--bg-light);
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.additional-services {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.additional-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 240px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.additional-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.additional-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.additional-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.booking-info-section {
    padding: 5rem 0;
}

.booking-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #1e4a5f);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1.2;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info-block > p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-details .note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-image-block {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 500px;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.map-section {
    padding: 4rem 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.map-overlay p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-section {
    padding: 5rem 0;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row strong {
    color: var(--text-dark);
}

.info-row span {
    color: var(--text-medium);
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    flex: 1;
    color: var(--text-medium);
    line-height: 1.6;
    padding-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 4rem 0;
}

.legal-text {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.legal-text h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem 0;
    color: var(--text-dark);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
    color: var(--text-dark);
}

.legal-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-text ul li,
.legal-text ol li {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-text ol li {
    list-style: decimal;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: #234a5f;
}

.legal-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 2rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cards-grid,
    .apartments-grid,
    .testimonials-cards,
    .values-grid,
    .additional-cards,
    .steps-grid {
        flex-direction: column;
    }

    .booking-wrapper,
    .split-content,
    .content-block,
    .content-block.reverse,
    .service-card-full,
    .service-card-full.reverse,
    .contact-grid {
        flex-direction: column;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-image {
        min-height: 300px;
    }

    .contact-image-block {
        min-height: 300px;
    }
}
