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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    word-break: break-word;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

a {
    color: #14c6de;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffee00;
}

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

.btn-primary {
    background: linear-gradient(135deg, #14c6de 0%, #0ea5ba 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(20, 198, 222, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0ea5ba 0%, #14c6de 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 198, 222, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: #333333;
    color: #ffffff;
    border: 1px solid #555555;
}

.btn-secondary:hover {
    background: #ffee00;
    color: #000000;
    border-color: #ffee00;
}

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

.btn-outline:hover {
    background: #14c6de;
    color: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #14c6de;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #14c6de;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #14c6de;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    background: linear-gradient(135deg, #14c6de 0%, #ffee00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: normal;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

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

.section-icon img {
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
}

.section-icon:hover img {
    transform: scale(1.1);
}

.section-text h2 {
    color: #14c6de;
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(20, 198, 222, 0.1) 0%, rgba(255, 238, 0, 0.1) 100%);
}

.page-header h1 {
    color: #14c6de;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Advantages List */
.advantages-list {
    list-style: none;
    margin: 2rem 0;
}

.advantages-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #cccccc;
}

.advantages-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #14c6de;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(20, 198, 222, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(20, 198, 222, 0.1);
    transform: translateY(-5px);
    border-color: #14c6de;
}

.service-item h3 {
    color: #14c6de;
    margin-bottom: 1rem;
}

/* Achievements Stats */
.achievements-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 238, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 238, 0, 0.1);
    transform: translateY(-5px);
    border-color: #ffee00;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffee00;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: #14c6de;
    display: block;
    margin-bottom: 0.5rem;
}

/* Timeline */
.timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.year {
    background: linear-gradient(135deg, #14c6de 0%, #ffee00 100%);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
}

.content h3 {
    color: #14c6de;
    margin-bottom: 0.5rem;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.principle-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(20, 198, 222, 0.2);
    transition: all 0.3s ease;
}

.principle-card:hover {
    background: rgba(20, 198, 222, 0.1);
    transform: translateY(-5px);
    border-color: #14c6de;
}

.principle-card h3 {
    color: #14c6de;
    margin-bottom: 1rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(20, 198, 222, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    background: rgba(20, 198, 222, 0.1);
    transform: translateY(-5px);
    border-color: #14c6de;
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #14c6de;
}

.member-title {
    color: #ffee00;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.member-expertise span {
    background: rgba(20, 198, 222, 0.2);
    color: #14c6de;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Properties */
.filter-section {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #cccccc;
    border: 1px solid #555555;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #14c6de;
    color: #ffffff;
    border-color: #14c6de;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.property-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(20, 198, 222, 0.2);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 198, 222, 0.2);
    border-color: #14c6de;
}

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

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #ffee00;
}

.rating-text {
    color: #ffffff;
    font-weight: 600;
}

.property-content {
    padding: 2rem;
}

.property-content h3 {
    color: #14c6de;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.property-location {
    color: #ffee00;
    font-weight: 500;
    margin-bottom: 1rem;
}

.property-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.property-details span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #cccccc;
}

.property-description {
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.6;
}

.property-investment {
    background: rgba(20, 198, 222, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(20, 198, 222, 0.3);
}

.investment-amount,
.expected-return {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.investment-amount .label,
.expected-return .label {
    color: #cccccc;
}

.amount {
    color: #14c6de;
    font-weight: 700;
    font-size: 1.1rem;
}

.return {
    color: #ffee00;
    font-weight: 700;
    font-size: 1.1rem;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: rgba(255, 238, 0, 0.2);
    color: #ffee00;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.property-inquiry {
    width: 100%;
}

/* Investment Info */
.investment-info-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 0;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(20, 198, 222, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    background: rgba(20, 198, 222, 0.1);
    transform: translateY(-5px);
    border-color: #14c6de;
}

.info-card h3 {
    color: #14c6de;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-main-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h2 {
    color: #14c6de;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon img {
    width: 40px;
    height: 40px;
}

.contact-details h3 {
    color: #14c6de;
    margin-bottom: 0.5rem;
}

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

.social-section {
    margin-top: 2rem;
}

.social-section h3 {
    color: #14c6de;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    background: rgba(20, 198, 222, 0.2);
    color: #14c6de;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #14c6de;
    color: #ffffff;
}

/* Forms */
.contact-form-section h2 {
    color: #14c6de;
    margin-bottom: 2rem;
}

.contact-form,
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    color: #14c6de;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #14c6de;
    background: rgba(20, 198, 222, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #cccccc;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    padding: 0;
    width: auto;
}

.checkmark {
    display: none;
}

/* Office Hours */
.office-hours-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 0;
}

.office-hours-section h2 {
    color: #14c6de;
    text-align: center;
    margin-bottom: 2rem;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(20, 198, 222, 0.2);
}

.day {
    color: #cccccc;
}

.time {
    color: #14c6de;
    font-weight: 600;
}

.hours-note {
    text-align: center;
    color: #999999;
    font-style: italic;
}

/* FAQ */
.faq-section {
    padding: 3rem 0;
}

.faq-section h2 {
    color: #14c6de;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(20, 198, 222, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(20, 198, 222, 0.1);
    transform: translateY(-5px);
    border-color: #14c6de;
}

.faq-item h3 {
    color: #14c6de;
    margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(20, 198, 222, 0.1) 0%, rgba(255, 238, 0, 0.1) 100%);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-section h2 {
    color: #14c6de;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.newsletter-form .form-group {
    margin: 0;
}

.newsletter-form input {
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(20, 198, 222, 0.2) 0%, rgba(255, 238, 0, 0.2) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #14c6de;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 4rem;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
    animation: fadeInScale 1s ease;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thank-you-info h3 {
    color: #14c6de;
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    background: linear-gradient(135deg, #14c6de 0%, #ffee00 100%);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #14c6de;
    margin-bottom: 0.5rem;
}

.contact-urgent {
    background: rgba(255, 238, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 238, 0, 0.3);
}

.contact-urgent h3 {
    color: #ffee00;
    margin-bottom: 1rem;
}

.urgent-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.additional-resources h3 {
    color: #14c6de;
    margin-bottom: 2rem;
}

.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-link {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(20, 198, 222, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.resource-link:hover {
    background: rgba(20, 198, 222, 0.1);
    transform: translateY(-5px);
    border-color: #14c6de;
}

.resource-link h4 {
    color: #14c6de;
    margin-bottom: 0.5rem;
}

.resource-link p {
    color: #cccccc;
    margin: 0;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-document h2 {
    color: #14c6de;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(20, 198, 222, 0.3);
    padding-bottom: 0.5rem;
}

.legal-document h3 {
    color: #ffee00;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.contact-info {
    background: rgba(20, 198, 222, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid rgba(20, 198, 222, 0.3);
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(20, 198, 222, 0.2);
    color: #14c6de;
    font-weight: 600;
}

.cookie-table td {
    color: #cccccc;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(20, 198, 222, 0.3);
}

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

.footer-section h3 {
    color: #14c6de;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffee00;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #14c6de;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-top: 2px solid #14c6de;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    border: 2px solid #14c6de;
}

.cookie-modal-content h3 {
    color: #14c6de;
    margin-bottom: 2rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .urgent-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .principles-grid,
    .team-grid, .achievements-stats, .faq-grid {
        grid-template-columns: 1fr !important;
    }
    
    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    .contact-item {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .newsletter-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    body {
        background: #000000;
        color: #ffffff;
    }
    
    .section:nth-child(even) {
        background: #111111;
    }
    
    .btn-primary {
        background: #14c6de;
        border: 2px solid #ffffff;
    }
    
    .btn-outline {
        border-width: 3px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg-image {
        transform: none !important;
    }
}
