/* Base Styles */
:root {
    --primary-color: #ac7f6c;
    --primary-dark: #8c6453;
    --primary-light: #d4bcb2;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --light-bg: #f8f5f2;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --font-sans: 'Lato', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

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

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

ul, ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

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

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    padding: 1.2rem 2.4rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
}

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

.btn-small {
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.section-title p {
    max-width: 60rem;
    margin: 0 auto;
    color: var(--text-light);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

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

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

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

nav ul li {
    margin-left: 3rem;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    display: block;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--secondary-color);
    padding: 0.5rem 0;
    position: relative;
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 10rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
}

.hero h2 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

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

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

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

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

.post-content {
    padding: 2rem;
}

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

.post-content p {
    color: var(--text-light);
    margin-bottom: 1.6rem;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-right: 2.4rem;
}

.read-more::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.read-more:hover::after {
    right: -5px;
}

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

/* Admin Preview */
.admin-preview {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.admin-frame {
    width: 100%;
    height: 40rem;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Services Preview */
.services-preview {
    padding: 8rem 0;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

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

.testimonial {
    padding: 2rem;
}

.testimonial-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 8rem;
    font-family: var(--font-serif);
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content p {
    position: relative;
    font-style: italic;
    z-index: 1;
    margin-bottom: 2rem;
}

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

.client-info img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

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

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

/* Call to Action */
.cta {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    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: 5rem;
    margin-bottom: 1.5rem;
}

.footer-links h3, 
.footer-contact h3, 
.footer-social h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h3::after, 
.footer-contact h3::after, 
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4rem;
    height: 0.2rem;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--white);
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-contact p svg {
    margin-right: 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: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 1.4rem;
    opacity: 0.7;
}

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

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
}

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

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

.cookie-link {
    font-size: 1.4rem;
}

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

.page-header h2 {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

/* Blog Page */
.blog-posts {
    padding: 8rem 0;
}

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

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

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

.blog-content {
    padding: 2.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.blog-meta .date {
    color: var(--text-lighter);
    margin-right: 1.5rem;
}

.blog-meta .category {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Post Page */
.post-header {
    background-color: var(--light-bg);
    padding: 6rem 0;
    text-align: center;
}

.post-category {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.post-author {
    display: flex;
    align-items: center;
}

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

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

.post-content {
    padding: 8rem 0;
}

.post-featured-image {
    margin-bottom: 4rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body {
    margin-bottom: 5rem;
}

.post-body h2 {
    font-size: 3rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-body h3 {
    font-size: 2.4rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-body p {
    margin-bottom: 2rem;
    font-size: 1.7rem;
    line-height: 1.7;
}

.post-body ul, 
.post-body ol {
    margin-bottom: 2.5rem;
    padding-left: 2.5rem;
}

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

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

.post-tags span {
    font-weight: 600;
    color: var(--text-color);
}

.post-tags a {
    background-color: var(--light-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 1.4rem;
    color: var(--text-light);
    transition: var(--transition);
}

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

.share-post {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.share-post span {
    font-weight: 600;
    color: var(--text-color);
}

.post-author-bio {
    display: flex;
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: var(--radius-md);
    margin-bottom: 5rem;
}

.post-author-bio img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 2.5rem;
}

.author-info h3 {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.author-info h4 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.author-info p {
    margin-bottom: 1.5rem;
}

.author-info .social-icons {
    justify-content: flex-start;
}

.author-info .social-icons a {
    width: 3.6rem;
    height: 3.6rem;
    background-color: var(--white);
    color: var(--primary-color);
}

.related-posts {
    margin-bottom: 5rem;
}

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

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

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

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.team-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.team-member h3 {
    font-size: 2.2rem;
    margin: 2rem 0 0.5rem;
    padding: 0 2rem;
}

.team-member p {
    color: var(--text-light);
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.team-member .social-icons {
    justify-content: center;
    margin-bottom: 2rem;
}

.team-member .social-icons a {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.values-section {
    padding: 8rem 0;
}

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

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

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.value-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.service-intro {
    max-width: 80rem;
    margin: 0 auto 6rem;
    text-align: center;
}

.service-card.detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 0;
    text-align: left;
    margin-bottom: 4rem;
}

.service-image {
    height: 100%;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    overflow: hidden;
}

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

.service-content {
    padding: 3rem;
}

.service-content h3 {
    font-size: 2.4rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.service-content h4 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-content ul {
    margin-bottom: 2.5rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.service-pricing .price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.process-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    height: 0.3rem;
    background-color: var(--primary-light);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}

.step-number {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 3.6rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.process-step h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.process-step p {
    font-size: 1.5rem;
}

.faq-section {
    padding: 8rem 0;
}

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

.faq-item {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
}

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

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

.contact-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem;
    border-radius: var(--radius-md);
}

.contact-info h3 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    margin-bottom: 3rem;
}

.info-icon {
    margin-right: 2rem;
    font-size: 2.4rem;
    color: var(--white);
}

.info-item h4 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
}

.info-item p {
    opacity: 0.9;
    margin-bottom: 0;
}

.social-connect {
    margin-top: 4rem;
}

.social-connect h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.contact-form-container h3 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(172, 127, 108, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 1.4rem;
}

.location-map {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* 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: var(--white);
    border-radius: var(--radius-md);
    padding: 4rem;
    max-width: 50rem;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-lighter);
}

.modal h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.modal p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 60%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 4rem;
    }
    
    .service-card.detailed {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 30rem;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1.5rem 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .post-author-bio img {
        margin: 0 auto 2rem;
    }
    
    .author-info .social-icons {
        justify-content: center;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 54%;
    }
    
    .hero h2 {
        font-size: 3.6rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
