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

body {
font-family: 'Georgia', serif;
line-height: 1.7;
color: #2c3e50;
background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
text-align: center;
}

.main-header {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
padding: 1.2rem 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
position: sticky;
top: 0;
z-index: 1000;
}

.header-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2.5rem;
}

.logo-section {
display: flex;
align-items: center;
gap: 1rem;
}

.site-logo {
width: 55px;
height: 55px;
border-radius: 50%;
border: 3px solid #d4af37;
}

.site-title {
font-size: 1.6rem;
font-weight: 700;
color: #d4af37;
letter-spacing: 0.5px;
}

.primary-nav {
display: flex;
gap: 2.5rem;
}

.primary-nav a {
color: #ecf0f1;
text-decoration: none;
font-weight: 500;
font-size: 1.05rem;
transition: all 0.3s ease;
position: relative;
padding: 0.5rem 0;
}

.primary-nav a:hover {
color: #d4af37;
}

.primary-nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: #d4af37;
transition: width 0.3s ease;
}

.primary-nav a:hover::after {
width: 100%;
}

.hero-banner {
background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(22, 33, 62, 0.85)), url('images/1.jpg') center/cover;
padding: 8rem 2rem;
color: white;
margin-bottom: 4rem;
}

.hero-content h1 {
font-size: 3.2rem;
margin-bottom: 1.2rem;
text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
font-weight: 700;
}

.hero-content p {
font-size: 1.4rem;
max-width: 750px;
margin: 0 auto;
opacity: 0.95;
}

.page-header {
background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
padding: 4.5rem 2rem;
color: white;
margin-bottom: 3rem;
}

.page-header h1 {
font-size: 2.8rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

.page-header p {
font-size: 1.25rem;
opacity: 0.9;
}

.content-wrapper {
max-width: 1300px;
margin: 0 auto;
padding: 0 2rem;
}

.editor-word {
background: white;
padding: 4rem 2rem;
margin: 3rem 0;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.editor-word h2 {
color: #1a1a2e;
font-size: 2.3rem;
margin-bottom: 1.5rem;
position: relative;
display: inline-block;
}

.editor-word h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: #d4af37;
}

.editor-word p {
font-size: 1.15rem;
line-height: 1.9;
color: #555;
margin-bottom: 1.3rem;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

.main-content {
padding: 3rem 0;
}

.featured-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-bottom: 4rem;
align-items: center;
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.featured-image img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.intro-text p {
font-size: 1.15rem;
line-height: 1.8;
color: #555;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.service-card {
background: white;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
border-top: 4px solid #d4af37;
}

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

.service-card h3 {
color: #1a1a2e;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.service-card p {
color: #666;
line-height: 1.7;
}

.image-showcase {
margin: 4rem 0;
}

.image-showcase img {
width: 100%;
max-width: 1200px;
height: auto;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2.5rem;
margin-top: 2rem;
}

.blog-post-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.blog-post-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.post-content {
padding: 2rem;
}

.post-content h2 {
color: #1a1a2e;
font-size: 1.5rem;
margin-bottom: 1rem;
line-height: 1.4;
}

.post-excerpt {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.7;
}

.read-more-btn {
display: inline-block;
background: #d4af37;
color: white;
padding: 0.8rem 2rem;
text-decoration: none;
border-radius: 6px;
transition: all 0.3s ease;
font-weight: 600;
}

.read-more-btn:hover {
background: #b8941f;
transform: scale(1.05);
}

.about-intro {
background: white;
padding: 3rem;
border-radius: 12px;
margin-bottom: 3rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.about-intro h2 {
color: #1a1a2e;
font-size: 2.2rem;
margin-bottom: 1.5rem;
}

.about-intro p {
font-size: 1.15rem;
line-height: 1.8;
color: #555;
margin-bottom: 1.3rem;
}

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

.team-section h2 {
color: #1a1a2e;
font-size: 2.2rem;
margin-bottom: 2.5rem;
}

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

.team-member {
background: white;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

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

.team-member img {
width: 100%;
max-width: 400px;
height: 400px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 1.5rem;
}

.team-member h3 {
color: #1a1a2e;
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

.position {
color: #d4af37;
font-weight: 600;
margin-bottom: 1rem;
font-size: 1.1rem;
}

.team-member p {
color: #666;
line-height: 1.7;
}

.values-section {
margin: 4rem 0;
}

.values-section h2 {
color: #1a1a2e;
font-size: 2.2rem;
margin-bottom: 2.5rem;
}

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

.value-card {
background: white;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
border-left: 5px solid #d4af37;
}

.value-card h3 {
color: #1a1a2e;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.value-card p {
color: #666;
line-height: 1.7;
}

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

.contact-info-section,
.contact-form-section {
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-section h2,
.contact-form-section h2 {
color: #1a1a2e;
font-size: 2rem;
margin-bottom: 2rem;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 2rem;
}

.contact-item h3 {
color: #d4af37;
font-size: 1.3rem;
margin-bottom: 0.8rem;
}

.contact-item p {
color: #555;
line-height: 1.6;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
text-align: left;
}

.form-group label {
color: #1a1a2e;
font-weight: 600;
margin-bottom: 0.5rem;
font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
padding: 1rem;
border: 2px solid #e0e0e0;
border-radius: 6px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #d4af37;
}

.submit-btn {
background: #d4af37;
color: white;
padding: 1rem 2.5rem;
border: none;
border-radius: 6px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
background: #b8941f;
transform: scale(1.05);
}

.map-section {
margin-top: 3rem;
}

.map-section img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.7);
z-index: 2000;
justify-content: center;
align-items: center;
}

.modal-overlay.active {
display: flex;
}

.modal-content {
background: white;
padding: 3rem;
border-radius: 12px;
max-width: 500px;
text-align: center;
box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.modal-content h2 {
color: #1a1a2e;
font-size: 2rem;
margin-bottom: 1.5rem;
}

.modal-content p {
color: #555;
font-size: 1.15rem;
margin-bottom: 2rem;
}

.modal-close-btn {
background: #d4af37;
color: white;
padding: 0.8rem 2.5rem;
border: none;
border-radius: 6px;
font-size: 1.05rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-close-btn:hover {
background: #b8941f;
transform: scale(1.05);
}

.post-container {
max-width: 950px;
margin: 0 auto;
padding: 2rem;
}

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

.post-header h1 {
font-size: 2.8rem;
color: #1a1a2e;
line-height: 1.3;
margin-bottom: 1rem;
}

.post-meta {
color: #777;
font-size: 1rem;
}

.post-image-featured {
margin-bottom: 3rem;
}

.post-image-featured img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.post-body {
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: left;
}

.post-body h2 {
color: #1a1a2e;
font-size: 2rem;
margin-top: 2.5rem;
margin-bottom: 1.3rem;
}

.post-body p {
font-size: 1.15rem;
line-height: 1.9;
color: #444;
margin-bottom: 1.5rem;
}

.post-navigation {
margin-top: 3rem;
text-align: center;
}

.back-to-blog {
display: inline-block;
background: #1a1a2e;
color: white;
padding: 1rem 2.5rem;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
transition: all 0.3s ease;
}

.back-to-blog:hover {
background: #d4af37;
transform: scale(1.05);
}

.main-footer {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: white;
padding: 3.5rem 2rem 2rem;
margin-top: 5rem;
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
margin-bottom: 2rem;
}

.footer-section h4 {
color: #d4af37;
font-size: 1.4rem;
margin-bottom: 1.3rem;
}

.footer-section p {
line-height: 1.8;
opacity: 0.9;
margin-bottom: 0.5rem;
}

.footer-nav {
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.footer-nav a {
color: white;
text-decoration: none;
opacity: 0.9;
transition: all 0.3s ease;
}

.footer-nav a:hover {
color: #d4af37;
opacity: 1;
padding-left: 5px;
}

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

.footer-bottom p {
opacity: 0.8;
}

.cookie-banner {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
color: white;
padding: 2rem;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
z-index: 1500;
}

.cookie-banner.active {
display: block;
}

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

.cookie-content p {
margin-bottom: 1rem;
line-height: 1.7;
}

.cookie-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
align-items: center;
margin-top: 1.5rem;
flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
padding: 0.8rem 2rem;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1rem;
}

.btn-accept {
background: #d4af37;
color: white;
}

.btn-accept:hover {
background: #b8941f;
transform: scale(1.05);
}

.btn-reject {
background: transparent;
color: white;
border: 2px solid white;
}

.btn-reject:hover {
background: rgba(255,255,255,0.1);
}

.cookie-link {
color: #d4af37;
text-decoration: underline;
}

.cookie-link:hover {
color: #b8941f;
}

@media (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 1.5rem;
}

.primary-nav {
flex-direction: column;
gap: 1rem;
}

.hero-content h1 {
font-size: 2.2rem;
}

.featured-section,
.contact-layout {
grid-template-columns: 1fr;
}

.services-grid,
.blog-grid,
.team-grid,
.values-grid {
grid-template-columns: 1fr;
}

.post-header h1 {
font-size: 2rem;
}

.post-body {
padding: 2rem;
}
}