/* Base Styles */
:root {
    --primary-color: #1e6091;
    --secondary-color: #f29f05;
    --accent-color: #e85f5c;
    --dark-color: #293241;
    --light-color: #f8f9fa;
    --text-color: #333;
    --light-text-color: #666;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --border-color: #dee2e6;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-max-width: 1200px;
    --section-spacing: 80px;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

.center {
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--light-text-color);
}

/* Button Styles */
.btn, .btn-small, .btn-outline, .btn-outline-small {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.btn-small, .btn-outline-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn:hover, .btn-small:hover {
    background-color: #174d74;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

nav ul li a {
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

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

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

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

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

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

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

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

.page-header h1 {
    margin-bottom: 10px;
}

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

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

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

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

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

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

.feature-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: rgba(30, 96, 145, 0.1);
    border-radius: 50%;
}

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

.feature p {
    color: var(--light-text-color);
}

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

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

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

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

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

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

.destination-info {
    padding: 20px;
}

.destination-info h3 {
    margin-bottom: 10px;
}

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

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

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

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

.blog-post:hover {
    transform: translateY(-5px);
}

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

.blog-post h3 {
    margin: 20px 20px 10px;
}

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

.read-more {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Comparison Table */
.comparison {
    padding: var(--section-spacing) 0;
    background-color: var(--light-color);
}

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

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: var(--box-shadow);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

tr:nth-child(even) {
    background-color: rgba(30, 96, 145, 0.05);
}

tr:hover {
    background-color: rgba(30, 96, 145, 0.1);
}

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

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

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

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

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: -15px;
    top: -20px;
    color: rgba(30, 96, 145, 0.1);
}

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

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

.testimonial-author h4 {
    margin-bottom: 5px;
}

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

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

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

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

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

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

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

.footer-col ul li 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.small a {
    width: 32px;
    height: 32px;
}

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

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

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    margin: 0;
}

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

.cookie-content a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: white;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.review-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    position: relative;
}

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

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

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

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

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ddd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3e%3c/polygon%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.rating input:checked ~ label,
.rating input:hover ~ label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23f29f05' stroke='%23f29f05' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3e%3c/polygon%3e%3c/svg%3e");
}

/* Blog Page Styles */
.blog-filter {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-filter p {
    margin-right: 15px;
    margin-bottom: 0;
    font-weight: 600;
}

.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-options a {
    padding: 8px 15px;
    background-color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-options a.active,
.filter-options a:hover {
    background-color: var(--primary-color);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

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

.blog-image {
    flex: 0 0 40%;
}

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

.blog-content {
    flex: 1;
    padding: 30px;
}

.blog-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(30, 96, 145, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

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

.blog-excerpt {
    margin-bottom: 20px;
    color: var(--light-text-color);
}

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

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

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

.pagination .current-page {
    background-color: var(--primary-color);
    color: white;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

.newsletter-form {
    display: flex;
    margin-top: 30px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.form-note {
    font-size: 0.8rem;
    color: var(--light-text-color);
}

/* Blog Post Styles */
.blog-post-header {
    padding: 60px 0;
    background-color: var(--light-color);
}

.blog-post-meta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-meta h1 {
    margin-bottom: 15px;
}

.author-date {
    color: var(--light-text-color);
    margin-bottom: 20px;
}

.author-date span {
    margin: 0 5px;
}

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

.social-share span {
    margin-right: 5px;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.blog-post-content {
    padding: 60px 0;
}

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

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

.post-featured-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.post-body {
    margin-bottom: 40px;
}

.post-body .intro {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.post-body h2 {
    margin-top: 40px;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
}

.post-image-left, .post-image-right {
    margin-bottom: 20px;
}

.post-image-left {
    float: left;
    margin-right: 20px;
    width: 40%;
}

.post-image-right {
    float: right;
    margin-left: 20px;
    width: 40%;
}

.post-image-left img, .post-image-right img {
    width: 100%;
    border-radius: var(--border-radius);
}

.image-caption {
    font-size: 0.8rem;
    color: var(--light-text-color);
    text-align: center;
    margin-top: 5px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(30, 96, 145, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
}

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

.author-box {
    display: flex;
    align-items: flex-start;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 40px;
}

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

.author-box h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--light-text-color);
}

.author-box h4 {
    margin-bottom: 10px;
}

.author-box p {
    margin: 0;
    font-size: 0.9rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.post-navigation a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.prev-post, .next-post, .back-to-blog {
    color: var(--text-color);
}

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

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

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.author-widget {
    text-align: center;
}

.author-widget img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.author-widget h3 {
    margin-bottom: 5px;
}

.author-widget p {
    color: var(--light-text-color);
    margin-bottom: 15px;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.popular-post img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    object-fit: cover;
    margin-right: 15px;
}

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

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

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

.popular-post p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--light-text-color);
}

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

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

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

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

.categories-list span {
    color: var(--light-text-color);
    font-size: 0.9rem;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-posts {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

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

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

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

.related-post h3 {
    margin: 20px 20px 10px;
    font-size: 1.1rem;
}

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

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

.related-post p {
    margin: 0 20px 20px;
    color: var(--light-text-color);
    font-size: 0.9rem;
}

/* About Page Styles */
.about-story {
    padding: var(--section-spacing) 0;
}

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

.about-content h2 {
    margin-bottom: 20px;
}

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

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

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

.mission-content h2 {
    margin-bottom: 20px;
}

.mission-content > p {
    margin-bottom: 40px;
}

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

.value-item {
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 96, 145, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.value-item h3 {
    margin-bottom: 10px;
}

.value-item p {
    color: var(--light-text-color);
}

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

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

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

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

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

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

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .social-icons {
    justify-content: center;
    margin-top: 15px;
}

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

.approach-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: center;
}

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

.approach-content h2 {
    margin-bottom: 20px;
}

.approach-content > p {
    margin-bottom: 30px;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.approach-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.approach-feature p {
    color: var(--light-text-color);
}

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

.sustainability-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

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

.sustainability-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: rgba(30, 96, 145, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

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

.sustainability-item ul {
    color: var(--light-text-color);
}

.sustainability-partners {
    text-align: center;
}

.sustainability-partners h3 {
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.partners-logos img:hover {
    opacity: 1;
}

.cta-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

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

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
    color: var(--light-text-color);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

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

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 5px;
    color: var(--light-text-color);
}

.contact-item .subtitle {
    font-size: 0.9rem;
    color: var(--light-text-color);
}

.business-hours {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.business-hours h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.business-hours table {
    width: 100%;
    margin-bottom: 15px;
    box-shadow: none;
}

.business-hours td {
    padding: 8px 0;
    border: none;
}

.business-hours p {
    font-size: 0.9rem;
    color: var(--light-text-color);
    margin: 0;
}

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

.contact-form-container h2 {
    margin-bottom: 30px;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    grid-column: 1 / -1;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

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

.contact-form button {
    grid-column: 1 / -1;
}

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

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

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

.map-directions {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.map-directions h3 {
    margin-bottom: 15px;
}

.map-directions p {
    color: var(--light-text-color);
}

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

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding-bottom: 15px;
    display: none;
}

.faq-answer p {
    margin: 0;
    color: var(--light-text-color);
}

.newsletter-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.newsletter-form button:hover {
    background-color: #d48c04;
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-note a {
    color: white;
    text-decoration: underline;
}

.form-success-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

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

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

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

.close-btn {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .blog-post-content .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .post-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .about-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        flex-direction: column;
    }

    .blog-image {
        flex: none;
    }

    .post-image-left,
    .post-image-right {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }

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

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        padding: 15px;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

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

    .hero {
        padding: 80px 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .sustainability-item {
        text-align: center;
    }

    .sustainability-icon {
        margin: 0 auto 20px;
    }
}
