* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--forest-green: #2d3e2f;
--dark-green: #1a2520;
--espresso: #3e2723;
--brass-gold: #b8860b;
--light-brass: #d4af37;
--cream: #f5f1e8;
--light-gray: #e8e4db;
--text-dark: #1a1a1a;
--text-light: #f5f1e8;
}

body {
font-family: 'Georgia', 'Times New Roman', serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--cream);
overflow-x: hidden;
}

.main-header {
background: linear-gradient(135deg, var(--forest-green) 0%, var(--dark-green) 100%);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.container-header {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section img {
border-radius: 8px;
border: 2px solid var(--brass-gold);
}

.primary-nav .nav-list {
display: flex;
list-style: none;
gap: 2.5rem;
}

.primary-nav a {
color: var(--text-light);
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
letter-spacing: 0.5px;
transition: all 0.3s ease;
position: relative;
}

.primary-nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--brass-gold);
transition: width 0.3s ease;
}

.primary-nav a:hover::after {
width: 100%;
}

.primary-nav a:hover {
color: var(--light-brass);
}

.hero-banner {
height: 600px;
background: linear-gradient(rgba(29, 62, 47, 0.7), rgba(62, 39, 35, 0.7)), url("../images/1.jpg") center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
}

.hero-overlay {
width: 100%;
}

.hero-content h1 {
font-size: 4rem;
color: var(--text-light);
margin-bottom: 1.5rem;
font-weight: 700;
text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
letter-spacing: 2px;
}

.hero-subtitle {
font-size: 1.5rem;
color: var(--light-brass);
font-style: italic;
}

.content-wrapper {
max-width: 1300px;
margin: 0 auto;
padding: 0 2rem;
}

.intro-section {
padding: 6rem 0;
background: var(--cream);
}

.intro-section h2 {
text-align: center;
font-size: 2.8rem;
color: var(--forest-green);
margin-bottom: 3rem;
position: relative;
}

.intro-section h2::after {
content: '';
display: block;
width: 120px;
height: 3px;
background: var(--brass-gold);
margin: 1rem auto 0;
}

.intro-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.intro-card {
background: white;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-top: 4px solid var(--brass-gold);
}

.intro-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.icon-circle {
font-size: 3rem;
display: inline-block;
margin-bottom: 1.5rem;
}

.intro-card h3 {
font-size: 1.6rem;
color: var(--espresso);
margin-bottom: 1rem;
}

.intro-card p {
color: #555;
line-height: 1.8;
}

.welcome-letter {
background: linear-gradient(135deg, var(--espresso) 0%, var(--forest-green) 100%);
padding: 6rem 0;
color: var(--text-light);
}

.letter-container {
background: rgba(255,255,255,0.05);
padding: 4rem;
border-radius: 12px;
border: 2px solid var(--brass-gold);
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.letter-container h2 {
color: var(--light-brass);
font-size: 2.5rem;
margin-bottom: 2rem;
text-align: center;
}

.letter-body p {
font-size: 1.15rem;
margin-bottom: 1.5rem;
line-height: 1.9;
text-align: justify;
}

.letter-signature {
margin-top: 2.5rem;
font-style: italic;
text-align: right;
font-size: 1.1rem;
}

.featured-section {
padding: 6rem 0;
background: var(--light-gray);
}

.featured-section h2 {
text-align: center;
font-size: 2.8rem;
color: var(--forest-green);
margin-bottom: 3rem;
}

.facility-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
}

.facility-item {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.facility-item:hover {
transform: scale(1.03);
}

.facility-item img {
width: 100%;
height: 280px;
object-fit: cover;
}

.facility-item h3 {
padding: 1.5rem 2rem 1rem;
font-size: 1.8rem;
color: var(--espresso);
}

.facility-item p {
padding: 0 2rem 2rem;
color: #666;
line-height: 1.8;
}

.blog-preview {
padding: 6rem 0;
background: var(--cream);
}

.blog-preview h2 {
text-align: center;
font-size: 2.8rem;
color: var(--forest-green);
margin-bottom: 3rem;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
margin-bottom: 3rem;
}

.blog-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.blog-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.blog-card img {
width: 100%;
height: 220px;
object-fit: cover;
}

.blog-card-content {
padding: 2rem;
}

.blog-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.blog-card h3 a {
color: var(--espresso);
text-decoration: none;
transition: color 0.3s ease;
}

.blog-card h3 a:hover {
color: var(--brass-gold);
}

.blog-excerpt {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.7;
}

.read-more {
color: var(--brass-gold);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.read-more:hover {
color: var(--light-brass);
}

.blog-cta {
text-align: center;
}

.btn-primary {
display: inline-block;
padding: 1rem 3rem;
background: var(--brass-gold);
color: var(--text-light);
text-decoration: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
background: var(--light-brass);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(184, 134, 11, 0.4);
}

.cta-section {
padding: 5rem 0;
background: linear-gradient(135deg, var(--forest-green) 0%, var(--espresso) 100%);
text-align: center;
color: var(--text-light);
}

.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: var(--text-light);
}

.cta-section p {
font-size: 1.2rem;
margin-bottom: 2.5rem;
opacity: 0.9;
}

.btn-secondary {
display: inline-block;
padding: 1rem 3rem;
background: transparent;
color: var(--text-light);
text-decoration: none;
border: 2px solid var(--brass-gold);
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-secondary:hover {
background: var(--brass-gold);
transform: translateY(-2px);
}

.main-footer {
background: var(--dark-green);
color: var(--text-light);
padding: 4rem 0 2rem;
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 2rem;
}

.footer-section h4 {
color: var(--light-brass);
font-size: 1.4rem;
margin-bottom: 1.5rem;
}

.footer-section p {
line-height: 1.8;
opacity: 0.9;
margin-bottom: 0.8rem;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: var(--text-light);
text-decoration: none;
transition: color 0.3s ease;
opacity: 0.9;
}

.footer-links a:hover {
color: var(--light-brass);
opacity: 1;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
opacity: 0.8;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--espresso);
color: var(--text-light);
padding: 2rem;
box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
z-index: 10000;
display: none;
}

.cookie-banner.show {
display: block;
animation: slideUp 0.5s ease;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
color: var(--light-brass);
margin-bottom: 1rem;
font-size: 1.5rem;
}

.cookie-content p {
margin-bottom: 1.5rem;
line-height: 1.7;
}

.cookie-buttons {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.8rem 2rem;
border: none;
border-radius: 50px;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
transition: all 0.3s ease;
}

.accept-btn {
background: var(--brass-gold);
color: white;
}

.accept-btn:hover {
background: var(--light-brass);
}

.customize-btn {
background: transparent;
border: 2px solid var(--brass-gold);
color: var(--text-light);
}

.customize-btn:hover {
background: rgba(184, 134, 11, 0.2);
}

.decline-btn {
background: transparent;
border: 2px solid #888;
color: var(--text-light);
}

.decline-btn:hover {
background: rgba(136, 136, 136, 0.2);
}

.cookie-link {
color: var(--light-brass);
text-decoration: underline;
}

.page-hero {
height: 400px;
background: linear-gradient(rgba(29, 62, 47, 0.8), rgba(62, 39, 35, 0.8)), url("../images/2.jpg") center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.about-hero {
background-image: linear-gradient(rgba(29, 62, 47, 0.8), rgba(62, 39, 35, 0.8)), url("../images/7.jpg");
}

.blog-hero {
background-image: linear-gradient(rgba(29, 62, 47, 0.8), rgba(62, 39, 35, 0.8)), url("../images/4.jpg");
}

.contact-hero {
background-image: linear-gradient(rgba(29, 62, 47, 0.8), rgba(62, 39, 35, 0.8)), url("../images/3.jpg");
}

.page-hero h1 {
font-size: 3.5rem;
color: var(--text-light);
margin-bottom: 1rem;
}

.about-story {
padding: 6rem 0;
background: var(--cream);
}

.story-content {
max-width: 1200px;
margin: 0 auto;
}

.story-content h2 {
font-size: 2.8rem;
color: var(--forest-green);
margin-bottom: 2rem;
}

.story-content p {
font-size: 1.15rem;
line-height: 1.9;
margin-bottom: 1.5rem;
color: #444;
text-align: justify;
}

.story-image {
margin-top: 3rem;
text-align: center;
}

.story-image img {
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.2);
max-width: 100%;
}

.team-section {
padding: 6rem 0;
background: var(--light-gray);
}

.team-section h2 {
text-align: center;
font-size: 2.8rem;
color: var(--forest-green);
margin-bottom: 1.5rem;
}

.team-intro {
text-align: center;
font-size: 1.2rem;
color: #666;
margin-bottom: 3rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
}

.team-member {
background: white;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s ease;
}

.team-member:hover {
transform: translateY(-8px);
}

.team-member img {
border-radius: 50%;
margin-bottom: 1.5rem;
border: 4px solid var(--brass-gold);
}

.team-member h3 {
font-size: 1.6rem;
color: var(--espresso);
margin-bottom: 0.5rem;
}

.member-title {
color: var(--brass-gold);
font-weight: 600;
margin-bottom: 1rem;
font-size: 1.1rem;
}

.member-bio {
color: #666;
line-height: 1.7;
font-size: 0.95rem;
}

.values-section {
padding: 6rem 0;
background: var(--cream);
}

.values-section h2 {
text-align: center;
font-size: 2.8rem;
color: var(--forest-green);
margin-bottom: 3rem;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2.5rem;
}

.value-card {
background: white;
padding: 2.5rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.value-card:hover {
box-shadow: 0 8px 28px rgba(0,0,0,0.12);
transform: translateY(-5px);
}

.value-icon {
font-size: 3rem;
display: block;
margin-bottom: 1.5rem;
}

.value-card h3 {
font-size: 1.5rem;
color: var(--espresso);
margin-bottom: 1rem;
}

.value-card p {
color: #666;
line-height: 1.7;
}

.blog-listing {
padding: 6rem 0;
background: var(--cream);
}

.articles-container {
max-width: 1200px;
margin: 0 auto;
}

.article-card {
background: white;
border-radius: 12px;
overflow: hidden;
margin-bottom: 3rem;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
display: grid;
grid-template-columns: 400px 1fr;
transition: transform 0.3s ease;
}

.article-card:hover {
transform: translateY(-5px);
}

.article-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.article-content {
padding: 2.5rem;
}

.article-content h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
}

.article-content h2 a {
color: var(--espresso);
text-decoration: none;
transition: color 0.3s ease;
}

.article-content h2 a:hover {
color: var(--brass-gold);
}

.article-meta {
display: flex;
gap: 2rem;
margin-bottom: 1.5rem;
color: #888;
font-size: 0.95rem;
}

.article-excerpt {
color: #555;
line-height: 1.8;
margin-bottom: 1.5rem;
}

.read-more-btn {
display: inline-block;
color: var(--brass-gold);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.read-more-btn:hover {
color: var(--light-brass);
}

.contact-main {
padding: 6rem 0;
background: var(--cream);
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 4rem;
}

.contact-info-side h2 {
font-size: 2.5rem;
color: var(--forest-green);
margin-bottom: 1.5rem;
}

.info-blocks {
margin-top: 3rem;
}

.info-item {
display: flex;
gap: 1.5rem;
margin-bottom: 2.5rem;
}

.info-icon {
font-size: 2rem;
flex-shrink: 0;
}

.info-details h3 {
font-size: 1.3rem;
color: var(--espresso);
margin-bottom: 0.5rem;
}

.info-details p {
color: #666;
line-height: 1.7;
}

.info-note {
font-size: 0.9rem;
font-style: italic;
color: #888;
}

.registration-info {
margin-top: 2rem;
padding: 1.5rem;
background: var(--light-gray);
border-radius: 8px;
border-left: 4px solid var(--brass-gold);
}

.contact-form-side h2 {
font-size: 2.5rem;
color: var(--forest-green);
margin-bottom: 2rem;
}

.contact-form {
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-group {
margin-bottom: 1.8rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
color: var(--espresso);
font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.9rem;
border: 2px solid var(--light-gray);
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--brass-gold);
}

.submit-btn {
width: 100%;
padding: 1rem;
background: var(--brass-gold);
color: white;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
background: var(--light-brass);
transform: translateY(-2px);
}

.map-section {
padding: 6rem 0;
background: var(--light-gray);
}

.map-section h2 {
text-align: center;
font-size: 2.5rem;
color: var(--forest-green);
margin-bottom: 2rem;
}

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.modal {
display: none;
position: fixed;
z-index: 10001;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.7);
}

.modal.show {
display: flex;
align-items: center;
justify-content: center;
}

.modal-content {
background: white;
padding: 3rem;
border-radius: 12px;
max-width: 500px;
text-align: center;
position: relative;
animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.close-modal {
position: absolute;
top: 1rem;
right: 1.5rem;
font-size: 2rem;
cursor: pointer;
color: #888;
}

.close-modal:hover {
color: var(--brass-gold);
}

.modal-content h2 {
color: var(--forest-green);
margin-bottom: 1rem;
}

.modal-content p {
color: #666;
line-height: 1.8;
margin-bottom: 1rem;
}

.post-article {
background: var(--cream);
}

.post-header {
padding: 3rem 0;
background: var(--light-gray);
}

.post-header h1 {
font-size: 3rem;
color: var(--forest-green);
margin-bottom: 1.5rem;
line-height: 1.3;
}

.post-meta {
display: flex;
gap: 2rem;
color: #888;
font-size: 1rem;
}

.post-featured-image {
width: 100%;
height: 500px;
overflow: hidden;
}

.post-featured-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-content {
padding: 4rem 0;
}

.post-content .content-wrapper {
max-width: 900px;
}

.lead-paragraph {
font-size: 1.3rem;
color: var(--espresso);
line-height: 1.9;
margin-bottom: 2.5rem;
font-weight: 500;
}

.post-content h2 {
font-size: 2.2rem;
color: var(--forest-green);
margin: 2.5rem 0 1.5rem;
}

.post-content h3 {
font-size: 1.8rem;
color: var(--espresso);
margin: 2rem 0 1rem;
}

.post-content p {
font-size: 1.1rem;
line-height: 1.9;
margin-bottom: 1.5rem;
color: #444;
text-align: justify;
}

.post-navigation {
margin-top: 4rem;
padding-top: 2rem;
border-top: 2px solid var(--light-gray);
}

.back-to-blog {
display: inline-block;
color: var(--brass-gold);
text-decoration: none;
font-size: 1.1rem;
font-weight: 600;
transition: color 0.3s ease;
}

.back-to-blog:hover {
color: var(--light-brass);
}

@media (max-width: 968px) {
.container-header {
flex-direction: column;
gap: 1.5rem;
}

.primary-nav .nav-list {
flex-direction: column;
gap: 1rem;
text-align: center;
}

.hero-content h1 {
font-size: 2.5rem;
}

.hero-subtitle {
font-size: 1.2rem;
}

.intro-grid,
.facility-grid,
.blog-grid,
.team-grid,
.values-grid {
grid-template-columns: 1fr;
}

.article-card {
grid-template-columns: 1fr;
}

.article-image {
height: 250px;
}

.contact-layout {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr;
text-align: center;
}

.post-header h1 {
font-size: 2rem;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
