/* Base Styles */
:root {
    --primary-color: #A96B6B;
    --secondary-color: #D7A3A3;
    --tertiary-color: #C28585;
    --dark-color: #333333;
    --light-color: #F8F5F5;
    --text-color: #444444;
    --border-color: #E3D9D9;
    --bg-color: #FFFFFF;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FF9800;
    --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

@font-face {
    font-family: 'Playfair Display';
    src: url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

.btn-large {
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 0.8125rem;
}

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

.btn-tertiary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 8px 0;
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-tertiary:hover {
    color: var(--tertiary-color);
}

.btn-tertiary:hover::after {
    width: 100%;
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--primary-color);
    z-index: 1000;
    width: 0%;
    transition: width 0.2s ease;
}

/* Custom Frame for Images */
.custom-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.custom-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    pointer-events: none;
    z-index: 1;
}

.custom-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-frame:hover img {
    transform: scale(1.05);
}

/* Header */
header {
    position: sticky;
    top: 0;
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

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

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

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

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    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);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-pattern.png');
    background-size: cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.hero-content {
    max-width: 600px;
    position: relative;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Page Banner */
.page-banner {
    background: var(--gradient-1);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/banner-pattern.png');
    background-size: cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.page-banner h1 {
    color: white;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.125rem;
    margin-bottom: 0;
    opacity: 0.9;
}

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

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

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

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

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

.service-card .custom-frame {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
}

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

.service-card p {
    margin-bottom: 20px;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

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

.blog-card .custom-frame {
    width: 100%;
    height: 250px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: var(--dark-color);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

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

.blog-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: #777;
}

.blog-date {
    margin-right: 15px;
}

.blog-category {
    color: var(--primary-color);
}

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

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
}

.quote {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h4 {
    margin-bottom: 5px;
}

.client-info p {
    font-style: normal;
    margin-bottom: 0;
    color: #777;
}

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

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

.service-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reversed {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image .custom-frame {
    width: 100%;
    height: 350px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-features li svg {
    color: var(--primary-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.service-price {
    font-size: 1.125rem;
    margin-bottom: 25px;
}

.service-price span {
    font-weight: 600;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/cta-pattern.png');
    background-size: cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

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

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-section .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
}

.blog-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.blog-posts-grid {
    flex: 2;
    min-width: 300px;
}

.blog-sidebar {
    flex: 1;
    min-width: 250px;
}

.blog-card-image {
    display: block;
}

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

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

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

.categories ul li {
    margin-bottom: 10px;
}

.categories ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.categories ul li a:hover {
    color: var(--primary-color);
}

.recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts ul li {
    margin-bottom: 15px;
}

.recent-posts ul li:last-child {
    margin-bottom: 0;
}

.recent-posts ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

.recent-posts ul li a:hover {
    color: var(--primary-color);
}

.mini-post-image {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.mini-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.mini-post-content span {
    font-size: 0.75rem;
    color: #777;
}

.newsletter p {
    margin-bottom: 15px;
}

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

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.newsletter-form .btn {
    width: 100%;
}

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

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

.post-meta {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: #777;
}

.post-date {
    margin-right: 15px;
}

.post-category {
    color: var(--primary-color);
}

.post-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 500;
}

.author-title {
    font-size: 0.875rem;
    color: #777;
}

.post-featured-image {
    margin-bottom: 40px;
}

.post-featured-image .custom-frame {
    width: 100%;
    height: 500px;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 40px;
}

.post-image-container {
    margin: 30px 0;
}

.post-image-container .custom-frame {
    width: 100%;
    height: auto;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-tags span {
    margin-right: 10px;
    font-weight: 500;
}

.post-tags a {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.8125rem;
}

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

.post-share {
    display: flex;
    align-items: center;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-share span {
    margin-right: 15px;
    font-weight: 500;
}

.share-buttons {
    display: flex;
}

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

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

.post-navigation {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    margin: 40px 0;
}

.post-nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous,
.nav-next {
    flex: 0 0 48%;
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 5px;
}

.nav-title {
    font-weight: 500;
}

.related-posts {
    margin: 60px 0;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
}

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

.related-post-image {
    display: block;
    margin-bottom: 15px;
}

.related-post-image .custom-frame {
    width: 100%;
    height: 180px;
}

.related-post h4 {
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.related-post-date {
    font-size: 0.8125rem;
    color: #777;
}

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

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image .custom-frame {
    width: 100%;
    height: 400px;
}

.values-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

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

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

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 0;
}

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

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

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

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

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

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

.team-member p {
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--light-color);
    border-radius: 50%;
    margin: 0 5px;
    color: var(--text-color);
}

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

.credentials-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

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

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

.credential-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-container {
    flex: 1.5;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

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

.info-content h3 {
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 5px;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.social-links h3 {
    margin-bottom: 15px;
}

.map-section {
    padding: 40px 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

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

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

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.modal.show {
    display: flex;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
}

.modal-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

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

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

.close-btn {
    display: inline-block;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

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

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
    border: none;
}

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

.btn-cookie.decline {
    background-color: transparent;
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.btn-cookie:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-social {
    flex: 1;
    min-width: 150px;
}

.footer-content h3 {
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.footer-links ul li a:hover {
    color: white;
}

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

.footer-contact p svg {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p a:hover {
    color: white;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 20px;
    font-size: 0.875rem;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .testimonial-slider {
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .testimonial {
        flex: 0 0 100%;
    }
    
    .post-featured-image .custom-frame {
        height: 400px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .services-preview,
    .blog-preview,
    .testimonials,
    .services-section,
    .about-story,
    .values-section,
    .team-section,
    .credentials-section,
    .contact-section,
    .map-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .service-item,
    .service-item.reversed {
        flex-direction: column;
    }
    
    .service-content,
    .service-image {
        flex: 0 0 100%;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text,
    .about-image {
        flex: 0 0 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .post-featured-image .custom-frame {
        height: 300px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-previous,
    .nav-next {
        flex: 0 0 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }
    
    .service-image .custom-frame,
    .about-image .custom-frame {
        height: 250px;
    }
    
    .post-featured-image .custom-frame {
        height: 200px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-social {
        flex: 0 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-policy-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-policy-links a {
        margin: 0 10px;
    }
}
