/* 
=================================================
Main Styles for PineShadeGrove
=================================================
*/

/* Base Styles */
:root {
    --primary-color: #2c6e9b;
    --primary-dark: #1d4d6b;
    --primary-light: #4a8cb9;
    --secondary-color: #e67e22;
    --secondary-dark: #d35400;
    --secondary-light: #f39c12;
    --neutral-dark: #333;
    --neutral: #666;
    --neutral-light: #999;
    --light: #f4f4f4;
    --white: #fff;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
    --section-spacing: 100px;
    --card-spacing: 30px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

button {
    cursor: pointer;
    font-family: inherit;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

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

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

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

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

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

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

nav ul {
    display: flex;
}

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

nav ul li a {
    color: var(--neutral-dark);
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    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: #e8f4f8;
    background-image: linear-gradient(rgba(44, 110, 155, 0.8), rgba(44, 110, 155, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: var(--section-spacing) 0;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--card-spacing);
}

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

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

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Destinations Section */
.destinations {
    padding: var(--section-spacing) 0;
    background-color: var(--light);
}

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

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--card-spacing);
}

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

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

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

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    margin-bottom: 0.5rem;
}

.destination-info p {
    margin-bottom: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-spacing) 0;
}

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

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--card-spacing);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.testimonial-text {
    position: relative;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-text:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    opacity: 0.1;
    font-family: Georgia, serif;
}

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

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

.testimonial-author h4 {
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--neutral);
    font-size: 0.9rem;
}

/* Beginner Guide Section */
.beginner-guide {
    padding: var(--section-spacing) 0;
    background-color: var(--light);
}

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

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

.beginner-text h3 {
    margin-bottom: 1.5rem;
}

.beginner-text ul {
    margin-bottom: 2rem;
}

.beginner-text li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.beginner-text li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.beginner-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Latest Blog Section */
.latest-blog {
    padding: var(--section-spacing) 0;
}

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

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--card-spacing);
    margin-bottom: 3rem;
}

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

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

.blog-preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-preview-content {
    padding: 1.5rem;
}

.blog-preview-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.blog-preview-content p {
    margin-bottom: 1rem;
}

.blog-link {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.blog-link:hover {
    color: var(--primary-dark);
}

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

/* Footer */
footer {
    background-color: var(--neutral-dark);
    color: var(--light);
    padding: 60px 0 20px;
}

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

.footer-about, .footer-links, .footer-contact, .footer-social {
    margin-bottom: 2rem;
}

.footer-about .footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--light);
    font-size: 0.9rem;
}

.footer-about .registration {
    font-size: 0.8rem;
    color: var(--neutral-light);
    margin-top: 1rem;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-links ul li a {
    color: var(--light);
}

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

.footer-contact address {
    font-style: normal;
}

.footer-contact address p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--light);
}

.footer-contact address p svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.footer-contact address p a {
    color: var(--light);
}

.footer-contact address p a:hover {
    color: var(--white);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--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;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--neutral-light);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-legal a {
    color: var(--light);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--neutral-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

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

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

.btn-cookie.accept:hover {
    background-color: var(--primary-dark);
}

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

.btn-cookie.customize:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-cookie.decline {
    background-color: transparent;
    color: var(--light);
}

.btn-cookie.decline:hover {
    color: var(--white);
}

.cookie-link {
    font-size: 0.8rem;
    color: var(--light);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--white);
}

/* Blog Page Styles */
.blog-content {
    padding: var(--section-spacing) 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-main {
    display: grid;
    gap: 40px;
}

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

.blog-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-info {
    padding: 1.5rem;
}

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

.blog-date, .blog-category {
    display: flex;
    align-items: center;
}

.blog-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--neutral-dark);
}

.category-list a:hover {
    color: var(--primary-color);
}

.popular-posts {
    display: grid;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-post h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.popular-post span {
    font-size: 0.8rem;
    color: var(--neutral);
}

.newsletter-form {
    display: grid;
    gap: 15px;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid var(--neutral-light);
    border-radius: var(--border-radius);
    font-family: inherit;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--neutral-dark);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    font-weight: 600;
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

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

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

.about-story {
    padding: var(--section-spacing) 0;
}

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

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

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

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

.about-team {
    padding: var(--section-spacing) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--card-spacing);
}

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

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

.team-card h3 {
    margin-bottom: 0.3rem;
}

.team-card p {
    margin-bottom: 1rem;
}

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

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

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

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

.about-stats {
    padding: var(--section-spacing) 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--card-spacing);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
}

.certifications {
    padding: var(--section-spacing) 0;
    text-align: center;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--card-spacing);
    margin-top: 3rem;
}

.certification-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1rem;
    filter: grayscale(100%);
    transition: var(--transition);
}

.certification-item:hover img {
    filter: grayscale(0);
}

.certification-item h3 {
    font-size: 1rem;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

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

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

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

/* Services Page Styles */
.services-overview {
    padding: var(--section-spacing) 0 0;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--card-spacing);
    margin-top: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-grid {
    padding: var(--section-spacing) 0;
}

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

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

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-features {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-cta {
    margin-top: 1.5rem;
}

.pricing {
    padding: var(--section-spacing) 0;
    background-color: var(--light);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--card-spacing);
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
}

.pricing-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background-color: var(--primary-dark);
}

.pricing-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-content {
    padding: 2rem;
}

.pricing-content ul {
    margin-bottom: 2rem;
}

.pricing-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-content ul li svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.pricing-content ul li.not-included {
    color: var(--neutral-light);
}

.pricing-content a {
    display: block;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--neutral);
}

.faq {
    padding: var(--section-spacing) 0;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--card-spacing);
}

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

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.testimonial-banner {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-content {
    padding: var(--section-spacing) 0;
}

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

.contact-intro {
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin-bottom: 0;
}

.contact-social h3 {
    margin-bottom: 1rem;
}

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

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

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--neutral-light);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    user-select: none;
    font-size: 0.95rem;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--light);
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: var(--neutral-light);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.map-section {
    padding: var(--section-spacing) 0;
    background-color: var(--light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-section {
    padding: var(--section-spacing) 0;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    padding: 2rem;
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral);
}

.close-button:hover {
    color: var(--neutral-dark);
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thank-you-message h2 {
    margin-bottom: 1rem;
}

.thank-you-message p {
    margin-bottom: 2rem;
}

/* Blog Post Styles */
.blog-post {
    padding: var(--section-spacing) 0;
}

.post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--neutral);
}

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

.post-excerpt {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--neutral-dark);
}

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

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

.post-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

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

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

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

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

.post-callout {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-callout p {
    margin-bottom: 0;
}

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

.post-image-secondary img {
    width: 100%;
}

.post-image-secondary figcaption {
    background-color: var(--light);
    padding: 0.8rem;
    font-size: 0.9rem;
    color: var(--neutral);
    text-align: center;
}

.post-author-bio {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light);
    border-radius: var(--border-radius);
}

.post-author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.post-navigation {
    margin: 3rem auto;
    max-width: 800px;
}

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

.post-nav-prev, .post-nav-next, .post-nav-back {
    background-color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    font-weight: 600;
    font-size: 0.9rem;
    max-width: 45%;
}

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

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

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-spacing);
}

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

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

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

.related-post-card h4 {
    padding: 1rem;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 80px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
        --card-spacing: 20px;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .about-grid,
    .service-item,
    .service-item.reverse,
    .contact-grid,
    .beginner-content {
        grid-template-columns: 1fr;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .post-nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .post-nav-prev, 
    .post-nav-next, 
    .post-nav-back {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .post-excerpt {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 400px) {
    .btn-primary, 
    .btn-secondary {
        display: block;
        width: 100%;
        text-align: center;
    }
}
