/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #2a2a2a;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #b0b0b0;
}

a {
    color: #96ed00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #edb200;
}

/* Header and Navigation */
.header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #96ed00;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #96ed00;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #96ed00;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-primary {
    background-color: #96ed00;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #7bc700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #edb200;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background-color: #d49e00;
    color: #1a1a1a;
}

.btn-outline {
    background-color: transparent;
    color: #96ed00;
    border: 2px solid #96ed00;
}

.btn-outline:hover {
    background-color: #96ed00;
    color: #1a1a1a;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #d0d0d0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

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

.page-header p {
    font-size: 1.3rem;
    color: #b0b0b0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: block;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.content-item {
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(150, 237, 0, 0.1);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-item {
    padding: 40px 30px;
    background: linear-gradient(135deg, #2a2a2a, #333333);
    border-radius: 15px;
    text-align: center;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    border-color: #96ed00;
    box-shadow: 0 15px 40px rgba(150, 237, 0, 0.15);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #96ed00, #7bc700);
    color: #1a1a1a;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: scale(1.05);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.achievement-text {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Offers */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.offer-item {
    padding: 40px;
    background: linear-gradient(135deg, #2a2a2a, #333333);
    border-radius: 15px;
    border: 2px solid #3a3a3a;
    transition: all 0.3s ease;
    position: relative;
}

.offer-item:hover {
    border-color: #edb200;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(237, 178, 0, 0.15);
}

.offer-price {
    font-size: 1.5rem;
    color: #edb200;
    font-weight: bold;
    margin-top: 20px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border-left: 4px solid #96ed00;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-rating {
    color: #edb200;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-author {
    margin-top: 20px;
    font-style: italic;
    color: #96ed00;
    font-weight: 500;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-item {
    padding: 40px 30px;
    background: linear-gradient(135deg, #2a2a2a, #333333);
    border-radius: 15px;
    text-align: center;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: #96ed00;
    box-shadow: 0 15px 40px rgba(150, 237, 0, 0.15);
}

.cta-section {
    text-align: center;
}

/* Newsletter */
#newsletter {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

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

.newsletter-form {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #96ed00;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Checkboxes */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #e0e0e0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #2a2a2a;
    border: 2px solid #3a3a3a;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #96ed00;
    border-color: #96ed00;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: -2px;
    color: #1a1a1a;
    font-weight: bold;
}

/* Apartments */
.filters-section {
    padding: 40px 0;
    background-color: #2a2a2a;
}

.filters {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-size: 1rem;
    min-width: 200px;
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.apartment-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
}

.apartment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(150, 237, 0, 0.1);
    border-color: #96ed00;
}

.apartment-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.apartment-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(26, 26, 26, 0.9);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-stars {
    color: #edb200;
}

.rating-score {
    color: #e0e0e0;
    font-weight: bold;
}

.apartment-content {
    padding: 30px;
}

.apartment-location {
    color: #96ed00;
    font-weight: 500;
    margin-bottom: 15px;
}

.apartment-description {
    margin-bottom: 20px;
}

.apartment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature {
    padding: 6px 12px;
    background-color: #3a3a3a;
    color: #e0e0e0;
    border-radius: 20px;
    font-size: 0.9rem;
}

.apartment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apartment-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #96ed00;
}

.period {
    color: #b0b0b0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 1px solid #3a3a3a;
}

.close {
    color: #e0e0e0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #96ed00;
}

.booking-form {
    margin-top: 30px;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #3a3a3a;
}

.contact-form-section {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #3a3a3a;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #96ed00;
    margin-bottom: 10px;
}

.contact-details small {
    color: #888;
    font-size: 0.9rem;
}

.social-contact {
    margin-top: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    padding: 10px 20px;
    background-color: #3a3a3a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #96ed00;
    color: #1a1a1a;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #96ed00;
}

.faq-item h4 {
    color: #96ed00;
    margin-bottom: 15px;
}

/* Emergency Contact */
.emergency-contact {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #3a0000, #2a1a1a);
    border-radius: 15px;
    border: 2px solid #edb200;
}

.emergency-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.emergency-item {
    text-align: center;
}

/* About Page Specific */
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    font-size: 1.1rem;
}

.content-image {
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-vision-item {
    padding: 40px;
    background: linear-gradient(135deg, #2a2a2a, #333333);
    border-radius: 15px;
    border: 1px solid #3a3a3a;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border-left: 4px solid #96ed00;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.team-grid,
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-item,
.why-choose-item {
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
}

.team-item:hover,
.why-choose-item:hover {
    transform: translateY(-5px);
    border-color: #96ed00;
    box-shadow: 0 10px 30px rgba(150, 237, 0, 0.1);
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #96ed00;
    border-bottom: 2px solid #3a3a3a;
    padding-bottom: 10px;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #edb200;
}

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

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

.legal-footer {
    margin-top: 60px;
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    text-align: center;
}

/* Thanks Page */
.thanks-section {
    padding: 150px 0 80px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 40px;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.thanks-details {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    color: #96ed00;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-details ul {
    list-style: none;
    padding: 0;
}

.thanks-details li {
    padding: 10px 0;
    border-bottom: 1px solid #3a3a3a;
    color: #b0b0b0;
}

.thanks-details li:last-child {
    border-bottom: none;
}

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

.contact-info-quick {
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
}

.social-links-large {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-link {
    padding: 15px 30px;
    background: linear-gradient(135deg, #96ed00, #7bc700);
    color: #1a1a1a;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.05);
    color: #1a1a1a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    border-top: 3px solid #96ed00;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #e0e0e0;
    font-size: 1rem;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 1rem;
    min-width: 120px;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    color: #b0b0b0;
    padding: 60px 0 20px;
    border-top: 1px solid #3a3a3a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #96ed00;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #96ed00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3a3a3a;
    color: #888;
}

/* Additional Info Section */
.additional-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    padding: 30px 20px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: #96ed00;
}

.info-item h4 {
    color: #96ed00;
    margin-bottom: 15px;
}

.social-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 1px solid #3a3a3a;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        padding: 20px;
        display: block;
        border-bottom: 1px solid #3a3a3a;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .apartments-grid {
        grid-template-columns: 1fr;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select {
        min-width: auto;
    }
    
    .emergency-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        padding: 20px;
    }
    
    .btn {
        min-width: 120px;
        padding: 10px 20px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .apartment-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
