/* Base Styles */
:root {
    --primary-color: #b76e79;
    --secondary-color: #718a75;
    --accent-color: #d4af37;
    --text-color: #333333;
    --light-text: #777777;
    --background-color: #ffffff;
    --light-gray: #f7f7f7;
    --medium-gray: #e0e0e0;
    --dark-gray: #555555;
    --footer-color: #22222f;
    --border-radius: 4px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    text-align: center;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

.btn-outline:hover {
    background-color: var(--light-gray);
    color: var(--text-color);
}

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

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

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

nav ul {
    display: flex;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
}

.hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Featured Posts Section */
.featured-posts {
    padding: 80px 0;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.post-image {
    height: 240px;
    overflow: hidden;
}

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

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

.post-content {
    padding: 25px;
}

.post-content h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

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

.read-more {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.read-more:after {
    content: "→";
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

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

/* Services Preview */
.services-preview {
    background-color: var(--light-gray);
    padding: 80px 0;
}

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

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

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

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service h3 {
    margin-bottom: 15px;
}

.service p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

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

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 200px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    text-align: center;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.quote:before, .quote:after {
    content: '"';
    font-size: 1.5em;
    color: var(--primary-color);
}

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

/* Newsletter */
.newsletter {
    background-color: var(--secondary-color);
    padding: 80px 0;
    color: white;
    text-align: center;
}

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

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 25px;
    background-color: var(--accent-color);
}

.newsletter-form button:hover {
    background-color: var(--primary-color);
}

/* Blog Grid */
.blog-content {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-post .post-image {
    height: 100%;
}

.blog-post .post-content {
    padding: 30px;
}

.blog-post .post-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.blog-post .date {
    margin-right: 20px;
}

.blog-post .category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-post h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

/* Blog Post Single */
.blog-post-single {
    padding: 80px 0;
}

.blog-post-single .container {
    max-width: 900px;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-header h1 {
    margin-bottom: 20px;
}

.post-header .post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--light-text);
    font-size: 0.95rem;
}

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

.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

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

.post-content ul {
    list-style-type: disc;
}

.post-content ol {
    list-style-type: decimal;
}

.post-footer {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.tags a {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 0.85rem;
}

.share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition);
}

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

.related-posts {
    margin-top: 80px;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

.related-post h3 {
    padding: 15px;
    font-size: 1.1rem;
}

.related-post a {
    color: var(--text-color);
}

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

/* About Story */
.about-story {
    padding: 80px 0;
}

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

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

.about-text h2 {
    margin-bottom: 25px;
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    text-align: left;
}

/* Values */
.our-values {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

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

.value:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value h3 {
    margin-bottom: 15px;
}

.value p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Team */
.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

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

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

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    color: var(--light-text);
    padding: 0 20px;
    margin-bottom: 15px;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--dark-gray);
    transition: var(--transition);
}

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

/* Credentials */
.credentials {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.credentials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

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

.credential:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.credential-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
}

.credential-icon svg {
    width: 30px;
    height: 30px;
}

.credential h3 {
    margin-bottom: 15px;
}

.credential p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Services */
.services {
    padding: 80px 0;
}

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

.service-image {
    height: 100%;
}

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

.service-content {
    padding: 40px 40px 40px 0;
    text-align: left;
}

.service-content h2 {
    margin-bottom: 10px;
    text-align: left;
}

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

.service-content ul {
    list-style-type: disc;
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 10px;
}

/* Packages */
.packages {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.packages h2 {
    text-align: center;
    margin-bottom: 10px;
}

.packages > p {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 40px;
}

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

.package {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.package h3 {
    margin-bottom: 15px;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-color);
}

.package-details {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-details ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.package-details li {
    margin-bottom: 10px;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: left;
}

.faq-item h3 {
    padding: 20px;
    margin: 0;
    cursor: pointer;
    background-color: var(--light-gray);
    position: relative;
    transition: var(--transition);
}

.faq-item h3:hover {
    background-color: var(--medium-gray);
}

.faq-item h3:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-item.active h3:after {
    content: "-";
}

.faq-item p {
    padding: 20px;
    margin: 0;
}

/* CTA */
.cta {
    background-color: var(--secondary-color);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

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

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

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

.contact-info h2, .contact-form h2 {
    margin-bottom: 40px;
    text-align: left;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.method-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.method-details h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.method-details p {
    color: var(--light-text);
    margin-bottom: 10px;
}

.method-details p:last-child {
    margin-bottom: 0;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1rem;
}

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

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

.form-checkbox input {
    margin-right: 10px;
    margin-top: 4px;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Thank You Modal */
.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

.modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 25px;
}

/* Glossary */
.glossary {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.glossary h2 {
    text-align: center;
    margin-bottom: 40px;
}

.glossary-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.glossary-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.glossary-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.glossary-item p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--footer-color);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3, .footer-policies h3, .footer-contact h3 {
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.footer-links ul, .footer-policies ul {
    text-align: left;
}

.footer-links li, .footer-policies li {
    margin-bottom: 10px;
}

.footer-links a, .footer-policies a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover, .footer-policies a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.8;
    text-align: left;
}

.footer-contact svg {
    margin-right: 10px;
}

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

.footer-bottom .social-links {
    margin-bottom: 20px;
}

.footer-bottom .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cookie-content a {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .service-card,
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .service-image,
    .blog-post .post-image {
        height: 300px;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .posts-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .credentials-grid,
    .packages-grid,
    .faq-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 15px;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .post-footer {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
