:root {
    --primary-burgundy: #7D1D3F;
    --deep-forest-green: #2C5530;
    --rich-gold: #B8860B;
    --elegant-cream: #FAF7F2;
    --soft-beige: #E8E3D6;
    --burgundy-hover: #5F1730;
    --green-accent: #3D7A42;
    --gold-highlight: #D4A017;
    --warm-gray: #6B645E;
    --off-white-bg: #FFFBF5;
    --light-cream: #F5F1E8;
    --medium-gray: #4A4A4A;
    --dark-text: #2B2B2B;
}

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

body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--off-white-bg);
    overflow-x: hidden;
}

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

.site-header {
    background-color: var(--elegant-cream);
    border-bottom: 2px solid var(--soft-beige);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-burgundy);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--burgundy-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    text-decoration: none;
    color: var(--medium-gray);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: var(--primary-burgundy);
}

.lang-link.active {
    color: var(--primary-burgundy);
    font-weight: 700;
}

.lang-separator {
    color: var(--warm-gray);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--deep-forest-green);
    font-weight: 600;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--green-accent);
}

.header-phone i {
    font-size: 18px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-burgundy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--deep-forest-green) 100%);
    background-image: url('../images/hero-rental-consultation.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 29, 63, 0.85) 0%, rgba(44, 85, 48, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--elegant-cream);
    padding: 80px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--rich-gold);
    color: var(--elegant-cream);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.cta-button:hover {
    background-color: var(--gold-highlight);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.about-section, .tenants-rights-section, .landlords-rights-section, .dispute-resolution-section, .contact-section {
    padding: 100px 0;
}

.about-section {
    background-color: var(--elegant-cream);
}

.tenants-rights-section {
    background-color: var(--off-white-bg);
}

.landlords-rights-section {
    background-color: var(--light-cream);
}

.dispute-resolution-section {
    background-color: var(--elegant-cream);
}

.contact-section {
    background-color: var(--off-white-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-burgundy);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--rich-gold) 0%, var(--primary-burgundy) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.rights-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.rights-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

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

.right-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.right-icon {
    font-size: 3rem;
    color: var(--rich-gold);
    margin-bottom: 25px;
}

.right-card h3 {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 20px;
    font-weight: 700;
}

.right-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.rights-image-section {
    margin-top: 40px;
}

.rights-image-section img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.dispute-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.dispute-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.dispute-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

.dispute-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.dispute-step {
    position: relative;
    padding-left: 90px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rich-gold), var(--gold-highlight));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.dispute-step h3 {
    font-size: 1.6rem;
    color: var(--primary-burgundy);
    margin-bottom: 20px;
    font-weight: 700;
}

.dispute-step p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.dispute-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
}

.dispute-resources {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--light-cream);
    border-radius: 15px;
    border-left: 5px solid var(--rich-gold);
}

.dispute-resources h3 {
    font-size: 1.6rem;
    color: var(--primary-burgundy);
    margin-bottom: 20px;
    font-weight: 700;
}

.dispute-resources p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

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

.contact-detail-item i {
    font-size: 1.8rem;
    color: var(--rich-gold);
    margin-top: 5px;
}

.contact-detail-item h4 {
    font-size: 1.2rem;
    color: var(--primary-burgundy);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-detail-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

.contact-detail-item a {
    color: var(--deep-forest-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--green-accent);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
    background-color: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    border: 2px solid var(--soft-beige);
    border-radius: 8px;
    transition: border-color 0.3s ease;
    background-color: var(--elegant-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rich-gold);
    background-color: white;
}

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

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--medium-gray);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--deep-forest-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--green-accent);
}

.submit-button {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--rich-gold), var(--gold-highlight));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.iti, #phone {
    width: 100%;
}

.site-footer {
    background-color: var(--primary-burgundy);
    color: var(--elegant-cream);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--rich-gold);
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

.footer-section a {
    color: var(--elegant-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--rich-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(250, 247, 242, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--elegant-cream) 0%, var(--off-white-bg) 100%);
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--deep-forest-green);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.thanks-info {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.thanks-info a {
    color: var(--deep-forest-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.thanks-info a:hover {
    color: var(--green-accent);
}

.thanks-actions {
    margin-top: 40px;
}

.button-primary {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--rich-gold), var(--gold-highlight));
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.policy-section {
    padding: 100px 0;
    background-color: var(--elegant-cream);
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 3rem;
    color: var(--primary-burgundy);
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-date {
    font-size: 1rem;
    color: var(--warm-gray);
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-block {
    background-color: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.policy-block h2 {
    font-size: 1.8rem;
    color: var(--primary-burgundy);
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-block h3 {
    font-size: 1.4rem;
    color: var(--deep-forest-green);
    margin: 30px 0 15px;
    font-weight: 600;
}

.policy-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.policy-block ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.policy-block li {
    margin-bottom: 12px;
    color: var(--medium-gray);
}

.policy-block strong {
    color: var(--primary-burgundy);
    font-weight: 700;
}

.policy-block a {
    color: var(--deep-forest-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-block a:hover {
    color: var(--green-accent);
}

.policy-action {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--elegant-cream);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .main-nav li {
        padding: 15px 0;
        border-bottom: 1px solid var(--soft-beige);
    }

    .header-actions {
        gap: 15px;
    }

    .header-phone span {
        display: none;
    }

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

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content, .contact-wrapper, .dispute-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .dispute-step {
        padding-left: 80px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .policy-block {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

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