/* Global Styles */
:root {
    --primary-color: #4A60A1;
    --secondary-color: #F2994A;
    --text-color: #333333;
    --light-text: #777777;
    --bg-color: #ffffff;
    --light-bg: #f5f7fa;
    --border-color: #e5e5e5;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

ul, ol {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn--primary {
    background-color: var(--primary-color);
    color: white;
}

.btn--primary:hover {
    background-color: #3d5085;
    color: white;
}

.btn--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn--outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.bg-light {
    background-color: var(--light-bg);
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: block;
}

.nav__list {
    display: flex;
}

.nav__item {
    margin-left: 30px;
}

.nav__link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

.nav__link:hover, .nav__link.active {
    color: var(--primary-color);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.nav-toggle::before, .nav-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    left: 0;
    transition: var(--transition);
}

.nav-toggle::before {
    top: 0;
}

.nav-toggle::after {
    bottom: 0;
}

/* Hero Banner */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero__content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    color: var(--text-color);
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero__buttons {
    display: flex;
    gap: 15px;
}

/* About Section */
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__text {
    margin-bottom: 1.5rem;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 1rem;
    color: var(--text-color);
}

/* Services Section */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service {
    padding: 40px 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service:hover {
    transform: translateY(-10px);
}

.service__icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.service__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service__text {
    color: var(--light-text);
}

/* Featured Properties */
.featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.property {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: white;
}

.property:hover {
    transform: translateY(-10px);
}

.property__image {
    height: 250px;
    overflow: hidden;
}

.property__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property:hover .property__image img {
    transform: scale(1.1);
}

.property__content {
    padding: 25px;
}

.property__category {
    display: inline-block;
    font-size: 0.875rem;
    color: white;
    background-color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.property__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.property__location {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.property__location img {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.property__details {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--light-text);
}

.property__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.featured__more {
    text-align: center;
}

/* Team Section */
.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team__member {
    text-align: center;
    transition: var(--transition);
}

.team__photo {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team__name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team__position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team__description {
    color: var(--light-text);
    margin-bottom: 15px;
}

.team__contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.team__contact a:hover {
    text-decoration: underline;
}

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

.testimonial {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial__text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial__text::before {
    content: """;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial__author {
    display: flex;
    align-items: center;
}

.testimonial__photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial__name {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial__position {
    font-size: 0.875rem;
    color: var(--light-text);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
}

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

.cta__content {
    max-width: 60%;
}

.cta__title {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta__text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta__actions {
    display: flex;
    gap: 15px;
}

.cta .btn--secondary {
    border-color: white;
    color: white;
}

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

/* Newsletter */
.newsletter__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.newsletter__content {
    max-width: 40%;
}

.newsletter__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter__text {
    color: var(--light-text);
    margin-bottom: 0;
}

.newsletter__form {
    width: 50%;
}

.newsletter__field {
    display: flex;
    margin-bottom: 10px;
}

.newsletter__input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter__button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter__button:hover {
    background-color: #3d5085;
}

.newsletter__consent {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--light-text);
}

.newsletter__consent input {
    margin-right: 10px;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #ffffff;
    padding: 80px 0 30px;
}

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

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer__title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.footer__menu li {
    margin-bottom: 12px;
}

.footer__menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__menu a:hover {
    color: white;
    padding-left: 5px;
}

.footer__address p {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer__address svg {
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Page Header */
.page-header {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.page-header__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
}

.breadcrumbs__link {
    color: var(--primary-color);
}

.breadcrumbs__separator {
    margin: 0 10px;
    color: var(--light-text);
}

.breadcrumbs__current {
    color: var(--light-text);
}

/* About Page */
.about-content__inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
}

.mission__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.value {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.value__icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value__title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.value__text {
    color: var(--light-text);
    margin-bottom: 0;
}

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

.contact-info__intro {
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    margin-bottom: 30px;
}

.contact-detail__icon {
    margin-right: 25px;
    flex-shrink: 0;
}

.contact-detail__title {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.contact-detail__text {
    color: var(--light-text);
    margin-bottom: 0;
}

.office-hours {
    margin-bottom: 40px;
}

.office-hours__title {
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.office-hours__list li {
    margin-bottom: 8px;
    color: var(--light-text);
}

.office-hours__list li span {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 10px;
}

.social-contact__title {
    font-size: 1.125rem;
    margin-bottom: 15px;
}

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

.social-contact__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary-color);
    transition: var(--transition);
}

.social-contact__link:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal !important;
}

.checkbox-label input {
    width: auto !important;
    margin-right: 10px;
}

.form-actions {
    text-align: right;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you__inner {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.thank-you__icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--primary-color);
}

.thank-you__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thank-you__text {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.thank-you__details {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.thank-you__details h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.thank-you__details p {
    margin-bottom: 10px;
}

.thank-you__details strong {
    color: var(--primary-color);
}

.thank-you__actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Legal Pages */
.legal-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content__date {
    font-size: 0.875rem;
    color: var(--light-text);
    margin-bottom: 40px;
    text-align: right;
}

.legal-content__section {
    margin-bottom: 40px;
}

.legal-content__section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.legal-content__section h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-content__section ul, 
.legal-content__section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content__section ul li, 
.legal-content__section ol li {
    margin-bottom: 10px;
    position: relative;
}

.legal-content__section ul {
    list-style-type: disc;
}

.legal-content__section address {
    font-style: normal;
    margin-top: 20px;
    line-height: 1.8;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cookie-table th, 
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
    display: none;
}

.cookie-consent.active {
    display: block;
}

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

.cookie-consent__content {
    max-width: 60%;
}

.cookie-consent__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.cookie-consent__text {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
}

.cookie-consent__button {
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-consent__button--accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-consent__button--accept:hover {
    background-color: #3d5085;
}

.cookie-consent__button--necessary {
    background-color: #f1f1f1;
    color: var(--text-color);
}

.cookie-consent__button--necessary:hover {
    background-color: #e0e0e0;
}

.cookie-consent__button--customize {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cookie-consent__button--customize:hover {
    background-color: rgba(74, 96, 161, 0.1);
}

/* Cookie Settings */
.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-settings.active {
    display: flex;
}

.cookie-settings__container {
    background-color: white;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.cookie-settings__header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings__title {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.cookie-settings__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--light-text);
    transition: var(--transition);
}

.cookie-settings__close:hover {
    color: var(--text-color);
}

.cookie-settings__content {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option__info {
    max-width: 75%;
}

.cookie-option__title {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.cookie-option__description {
    color: var(--light-text);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.cookie-option__toggle {
    display: flex;
    align-items: center;
}

.cookie-option__toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-option__toggle label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-option__toggle label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    transition: var(--transition);
}

.cookie-option__toggle input:checked + label {
    background-color: var(--primary-color);
}

.cookie-option__toggle input:checked + label::after {
    left: calc(100% - 22px);
}

.cookie-option__toggle input:disabled + label {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings__footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        height: 500px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.25rem;
    }
    
    .about__inner,
    .mission__inner,
    .about-content__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter__content {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .newsletter__form {
        width: 100%;
    }
    
    .cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta__content {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        transition: var(--transition);
        padding: 80px 20px 20px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
    }
    
    .nav__item {
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1002;
    }
    
    .nav-toggle.active span {
        background-color: transparent;
    }
    
    .nav-toggle.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .nav-toggle.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        order: -1;
    }
    
    .cookie-consent__container {
        flex-direction: column;
    }
    
    .cookie-consent__content {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .cookie-consent__actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-option {
        flex-direction: column;
    }
    
    .cookie-option__info {
        max-width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 450px;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .cta__actions {
        flex-direction: column;
    }
    
    .newsletter__field {
        flex-direction: column;
    }
    
    .newsletter__input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter__button {
        width: 100%;
        border-radius: 4px;
        padding: 12px;
    }
    
    .thank-you__actions {
        flex-direction: column;
    }
}

/* Blog Specific Styles */
.blog-grid__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-grid__intro {
    margin-bottom: 50px;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card__image {
    height: 240px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__content {
    padding: 30px;
}

.blog-card__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.875rem;
}

.blog-card__date {
    color: var(--light-text);
}

.blog-card__category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-card__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-card__excerpt {
    color: var(--light-text);
    margin-bottom: 20px;
}

.blog-card__link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.blog-card__link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.blog-card__link:hover::after {
    margin-left: 10px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar__section {
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.blog-sidebar__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.blog-sidebar__categories li {
    margin-bottom: 10px;
}

.blog-sidebar__categories a {
    display: block;
    color: var(--text-color);
    transition: var(--transition);
}

.blog-sidebar__categories a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.blog-sidebar__posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.blog-sidebar__posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-sidebar__posts a {
    display: flex;
    flex-direction: column;
    color: var(--text-color);
}

.blog-sidebar__post-title {
    font-weight: 600;
    margin-bottom: 5px;
    transition: var(--transition);
}

.blog-sidebar__posts a:hover .blog-sidebar__post-title {
    color: var(--primary-color);
}

.blog-sidebar__post-date {
    font-size: 0.875rem;
    color: var(--light-text);
}

.blog-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-sidebar__tag {
    display: block;
    padding: 5px 15px;
    background-color: var(--light-bg);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-color);
    transition: var(--transition);
}

.blog-sidebar__tag:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.blog-sidebar__cta p {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .blog-grid__container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 50px;
    }
}

/* Article Page */
.article {
    max-width: 800px;
    margin: 0 auto;
}

.article__header {
    margin-bottom: 40px;
}

.article__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.875rem;
}

.article__date,
.article__author {
    color: var(--light-text);
}

.article__category {
    color: var(--primary-color);
    font-weight: 600;
}

.article__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.article__featured-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.article__content {
    margin-bottom: 50px;
}

.article__content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article__content h3 {
    font-size: 1.375rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article__content p {
    margin-bottom: 20px;
}

.article__content ul,
.article__content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article__content li {
    margin-bottom: 10px;
}

.article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.article__content blockquote {
    padding: 20px 30px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    font-style: italic;
}

.article__content blockquote p:last-child {
    margin-bottom: 0;
}

.article__tags {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.article__tag {
    display: block;
    padding: 5px 15px;
    background-color: var(--light-bg);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-color);
    transition: var(--transition);
}

.article__tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.article__share {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.article__share-title {
    margin-right: 15px;
    margin-bottom: 0;
    font-size: 1rem;
}

.article__share-links {
    display: flex;
    gap: 10px;
}

.article__share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary-color);
    transition: var(--transition);
}

.article__share-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.article__author-bio {
    display: flex;
    gap: 30px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 50px;
}

.article__author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.article__author-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.article__author-description {
    color: var(--light-text);
    margin-bottom: 15px;
}

.article__related {
    margin-top: 60px;
}

.article__related-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.article__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .article__title {
        font-size: 2rem;
    }
    
    .article__author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .article__related-grid {
        grid-template-columns: 1fr;
    }
}