/* Base Styles */
:root {
    --primary-color: #d4a373;
    --primary-dark: #b08a5e;
    --secondary-color: #faedcd;
    --accent-color: #e9edc9;
    --text-color: #444444;
    --text-light: #777777;
    --heading-color: #333333;
    --background-light: #fefefe;
    --background-dark: #f6f6f6;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

section {
    padding: 8rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

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

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

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

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

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.btn-full {
    width: 100%;
    display: block;
}

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo img {
    height: 6rem;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--heading-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--heading-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--heading-color);
    position: relative;
    padding: 12rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-content {
    position: relative;
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* Featured Posts Section */
.featured-posts {
    padding: 8rem 0;
}

.featured-posts h2,
.blog-content h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 4rem;
}

.post-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 25rem;
    overflow: hidden;
}

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

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.post-content h3 a {
    color: var(--heading-color);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-date {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    margin-bottom: 2rem;
}

.read-more {
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 1rem;
}

.view-all {
    text-align: center;
    margin-top: 5rem;
}

/* Services Preview Section */
.services-preview {
    background-color: var(--background-dark);
    padding: 8rem 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.service-card h3 {
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 3rem;
    padding-bottom: 3rem;
    scroll-snap-type: x mandatory;
}

.testimonial {
    min-width: 80%;
    scroll-snap-align: center;
    background-color: var(--secondary-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.quote {
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: -1rem;
}

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

.client-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    border: 3px solid white;
}

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

.client-info h4 {
    margin-bottom: 0.5rem;
}

.client-info p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.cta-content {
    max-width: 70rem;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--secondary-color);
    padding: 6rem 0;
}

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

.newsletter h2 {
    margin-bottom: 1.5rem;
}

.newsletter p {
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

/* Footer */
footer {
    background-color: #222222;
    color: #999999;
    padding: 6rem 0 2rem;
}

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

.footer-logo img {
    height: 6rem;
    margin-bottom: 2rem;
}

.footer-links h3,
.footer-policies h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul,
.footer-policies ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-policies a {
    color: #999999;
}

.footer-links a:hover,
.footer-policies a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #333333;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-views {
    color: #999999;
    font-size: 1.4rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

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

.cookie-content a {
    font-size: 1.4rem;
}

/* Glossary */
.glossary {
    background-color: var(--background-dark);
    padding: 4rem 0;
    margin-top: 4rem;
}

.glossary h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.glossary-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: 2rem;
}

.glossary-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.glossary-item p {
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Page Headers */
.page-header {
    background-color: var(--secondary-color);
    padding: 8rem 0 6rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin: 0 auto;
}

/* Blog Post Styles */
.blog-post {
    padding: 8rem 0;
}

.post-header {
    max-width: 80rem;
    margin: 0 auto 5rem;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.post-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.post-author img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.post-featured-image {
    max-width: 100rem;
    margin: 0 auto 5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-content {
    max-width: 80rem;
    margin: 0 auto;
}

.post-intro {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.post-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.post-content li {
    margin-bottom: 1rem;
}

.post-content strong {
    color: var(--heading-color);
}

.post-image-small {
    margin: 3rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-caption {
    padding: 1.5rem;
    background-color: var(--background-dark);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.post-conclusion {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    font-size: 1.8rem;
}

.post-tags {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.post-tags span {
    color: var(--heading-color);
    font-weight: 500;
}

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-color);
    border-radius: 5rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.post-share span {
    color: var(--heading-color);
    font-weight: 500;
}

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

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--background-dark);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.social-share a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.related-posts {
    margin-top: 6rem;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.related-post {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-post img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.related-post h4 {
    padding: 1.5rem;
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* About Page Styles */
.about-intro {
    padding: 8rem 0;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 3rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.philosophy-item {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.philosophy-item h3 {
    margin-bottom: 1.5rem;
}

.our-philosophy,
.team-section,
.credentials {
    background-color: var(--background-dark);
    text-align: center;
}

.our-philosophy {
    padding-bottom: 0;
}

.team-section {
    padding-top: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
}

.team-member h3,
.team-member p {
    padding: 0 2rem;
}

.team-member h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 0 2rem 2rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--background-dark);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

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

.credentials-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    text-align: left;
    margin-top: 5rem;
}

.credentials-text ul {
    margin-left: 2rem;
}

.credentials-text li {
    margin-bottom: 1rem;
}

.credentials-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.credential-logo {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
}

/* Services Page Styles */
.services-intro {
    padding: 8rem 0;
}

.services-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.services-intro-content h2 {
    margin-bottom: 3rem;
}

.services-intro-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.services-main {
    background-color: var(--background-dark);
    padding: 8rem 0;
}

.services-main h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-detailed {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: grid;
    grid-template-columns: 1fr 2fr;
    transition: var(--transition);
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 100%;
}

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

.service-content {
    padding: 4rem;
}

.service-content h3 {
    margin-bottom: 1rem;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.service-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin-left: 2rem;
    margin-bottom: 3rem;
}

.service-content li {
    margin-bottom: 1rem;
}

.services-packages {
    padding: 8rem 0;
}

.services-packages h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.section-intro {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 5rem;
    font-size: 1.8rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
}

.package-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package-card h3 {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    margin-bottom: 0;
}

.package-price {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--heading-color);
    text-align: center;
    padding: 2rem 0 0.5rem;
    margin-bottom: 0;
}

.package-value {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.package-content {
    padding: 0 2rem 2rem;
}

.package-content p {
    margin-bottom: 2rem;
}

.package-content ul {
    margin-left: 2rem;
    margin-bottom: 2.5rem;
}

.package-content li {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    background-color: var(--background-dark);
    padding: 8rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-content {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 0;
    padding: 2rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    color: var(--primary-color);
}

.faq-item.active h3 {
    background-color: var(--primary-color);
    color: white;
}

.faq-item.active h3::after {
    content: '-';
    color: white;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 50rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-methods {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-method {
    display: flex;
    gap: 2rem;
}

.method-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.method-details h3 {
    margin-bottom: 1rem;
}

.method-details p {
    margin-bottom: 0.5rem;
}

.detail-note {
    color: var(--text-light);
    font-size: 1.4rem;
    font-style: italic;
}

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

.social-links a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-color);
    border-radius: 5rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

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

.contact-map {
    margin-top: 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 1.5rem;
}

.contact-form-container > p {
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-weight: 500;
    color: var(--heading-color);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: 2rem;
    height: 2rem;
}

.checkbox-group label {
    font-weight: normal;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    max-width: 50rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 4rem;
    text-align: center;
}

.success-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--success-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.modal-body h2 {
    margin-bottom: 1.5rem;
}

.close-btn {
    margin-top: 2rem;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    html {
        font-size: 58%;
    }

    .about-intro .container,
    .services-intro .container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-card-detailed {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 30rem;
    }

    .credentials-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 55%;
    }

    section {
        padding: 6rem 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 8rem;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .post-card {
        max-width: 40rem;
        margin: 0 auto;
    }

    .testimonial {
        min-width: 90%;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 50%;
    }

    .posts-grid,
    .blog-grid,
    .services-grid,
    .philosophy-grid,
    .team-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

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

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-share {
        flex-wrap: wrap;
        justify-content: center;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}
