/* Global Styles */
:root {
    --primary-color: #4a5568;
    --primary-light: #718096;
    --secondary-color: #e53e3e;
    --accent-color: #ed8936;
    --light-color: #f7fafc;
    --dark-color: #2d3748;
    --gray-color: #a0aec0;
    --background-color: #ffffff;
    --text-color: #1a202c;
    --border-color: #e2e8f0;
    --footer-color: #2d3748;
    --success-color: #48bb78;
    --warning-color: #ecc94b;
    --error-color: #f56565;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'Source Code Pro', Menlo, Monaco, Consolas, 'Courier New', monospace;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition: all 0.3s ease;
    --border-radius: 0.375rem;
    --container-width: 1200px;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    line-height: 1;
}

.btn:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

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

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

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.logo img {
    height: 40px;
    width: 40px;
    margin-right: 0.75rem;
    border-radius: 50%;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.25rem;
}

nav ul li a.active, nav ul li a:hover {
    color: var(--secondary-color);
}

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

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

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(42, 67, 101, 0.7), rgba(42, 67, 101, 0.8)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Header */
.page-header {
    background-image: linear-gradient(rgba(42, 67, 101, 0.7), rgba(42, 67, 101, 0.8)), url('images/page-header.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Event Countdown Section */
.event-countdown {
    background-color: var(--light-color);
    padding: 4rem 0;
    text-align: center;
}

.event-countdown h2 {
    margin-bottom: 1rem;
}

.event-countdown p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#countdown {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.countdown-item {
    margin: 0 1rem;
    min-width: 80px;
}

.countdown-item span {
    display: block;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-item .label {
    font-size: 0.875rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Posts Section */
.featured-posts {
    padding: 4rem 0;
    background-color: var(--background-color);
}

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

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

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

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

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

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

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

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.post-meta .category {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 1rem;
}

.post-meta .date {
    margin-right: 1rem;
}

.post-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.post-content p {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.read-more {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* Art Trends Section */
.art-trends {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.art-trends h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.art-trends > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.chart-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    height: 400px;
}

.trend-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.insight-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.insight-item svg {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-item h4 {
    margin-bottom: 0.5rem;
}

.insight-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.newsletter h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    padding: 0 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Footer */
footer {
    background-color: var(--footer-color);
    color: var(--light-color);
    padding-top: 4rem;
}

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

.footer-logo img {
    height: 50px;
    width: 50px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.footer-logo h3 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    color: var(--light-color);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

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

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact p svg {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

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

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

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

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

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

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 55, 72, 0.95);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: var(--shadow-lg);
}

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

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

.btn-cookie.tertiary {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.btn-cookie:hover {
    opacity: 0.9;
}

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

.cookie-content a:hover {
    color: var(--light-color);
}

/* Blog Styles */
.blog-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-box {
    display: flex;
    max-width: 400px;
    width: 100%;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 0.95rem;
}

.search-box button {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 0 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--dark-color);
}

.category-filter select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    background-color: var(--background-color);
    min-width: 200px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

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

.pagination span.current {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.pagination span.dots {
    background-color: transparent;
}

.pagination a.next {
    width: auto;
    padding: 0 1rem;
}

/* Blog Post Styles */
.blog-post {
    padding: 3rem 0 4rem;
}

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

.post-header .post-meta {
    justify-content: center;
}

.post-header h1 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.post-excerpt {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--primary-light);
}

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

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

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

.post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.post-content ul li, .post-content ol li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

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

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

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

.image-caption {
    background-color: var(--light-color);
    padding: 1rem;
    font-size: 0.95rem;
    color: var(--primary-light);
    font-style: italic;
    text-align: center;
    margin-bottom: 0;
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--light-color);
    position: relative;
}

blockquote::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(74, 85, 104, 0.2);
    line-height: 1;
}

blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

blockquote cite {
    font-size: 0.95rem;
    color: var(--primary-light);
    font-style: normal;
    display: block;
    text-align: right;
}

.author-bio {
    display: flex;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

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

.author-details h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.author-details h4 {
    margin-bottom: 0.75rem;
}

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

.post-tags {
    margin-bottom: 2.5rem;
}

.post-tags h4 {
    margin-bottom: 0.75rem;
}

.post-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tags ul li a {
    display: inline-block;
    background-color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.share-post {
    margin-bottom: 3rem;
}

.share-post h4 {
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    color: var(--light-color);
    transition: var(--transition);
}

.share-button svg {
    margin-right: 0.5rem;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.linkedin {
    background-color: #0077b5;
}

.share-button:hover {
    opacity: 0.9;
    color: var(--light-color);
}

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

.related-posts h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

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

.about-content h2 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.value-item h3 {
    margin-bottom: 1rem;
}

.value-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--primary-light);
}

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

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

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

.member-image {
    height: 300px;
    overflow: hidden;
}

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

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

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    margin-bottom: 0.25rem;
}

.position {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-size: 0.95rem;
}

.member-info p {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

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

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(74, 85, 104, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.testimonials {
    padding: 4rem 0;
    background-color: var(--light-color);
}

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

.testimonial-slide {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 0;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

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

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--primary-light);
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--primary-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-content {
    padding-bottom: 4rem;
}

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

.contact-info h2, .contact-form-container h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    margin-bottom: 1.5rem;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(74, 85, 104, 0.1);
    border-radius: 50%;
    margin-right: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.method-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.method-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.social-links a {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.business-hours h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.business-hours p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.form-group {
    margin-bottom: 0;
}

.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: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-body);
}

.form-group textarea {
    resize: vertical;
}

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

.checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.required {
    color: var(--error-color);
}

.map-section {
    padding-bottom: 4rem;
}

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

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

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

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

.accordion-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--background-color);
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background-color: var(--background-color);
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-button:hover {
    background-color: rgba(74, 85, 104, 0.05);
}

.accordion-button .icon {
    transition: var(--transition);
}

.accordion-button.active .icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 1.25rem;
    margin-bottom: 0;
}

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

.modal-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

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

.modal-body {
    padding: 3rem 2rem;
    text-align: center;
}

.checkmark {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.modal-body h2 {
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 2rem;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
    }
    
    .logo img {
        height: 35px;
        width: 35px;
    }
    
    .logo a {
        font-size: 1.25rem;
    }
    
    nav ul li {
        margin-left: 1.25rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .countdown-item {
        margin: 0 0.5rem;
        min-width: 60px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .team-grid {
        gap: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    header .container {
        width: 95%;
    }
    
    nav ul li {
        margin-left: 1rem;
    }
    
    nav ul li a {
        font-size: 0.95rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    #countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        margin: 0.5rem;
    }
    
    .blog-filters {
        flex-direction: column;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio img {
        margin: 0 auto 1.5rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .post-excerpt {
        font-size: 1.1rem;
    }
    
    .post-content p, .post-content ul li, .post-content ol li {
        font-size: 1rem;
    }
    
    blockquote p {
        font-size: 1.1rem;
    }
}
