:root {
--primary-color: #1a365d;
--secondary-color: #2c5282;
--accent-color: #3182ce;
--text-dark: #1a202c;
--text-light: #718096;
--bg-light: #f7fafc;
--bg-white: #ffffff;
--border-color: #e2e8f0;
--success-color: #38a169;
--error-color: #e53e3e;
--warning-color: #d69e2e;
}

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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--bg-white);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

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

a {
text-decoration: none;
color: var(--accent-color);
transition: color 0.3s ease;
}

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

.main-navigation {
background-color: var(--bg-white);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-brand {
display: flex;
align-items: center;
gap: 12px;
}

.logo-img {
width: 50px;
height: 50px;
border-radius: 8px;
object-fit: cover;
}

.brand-name {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-link {
color: var(--text-dark);
font-weight: 500;
padding: 0.5rem 0;
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent-color);
transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.mobile-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.mobile-toggle span {
display: block;
width: 25px;
height: 3px;
background-color: var(--primary-color);
transition: all 0.3s ease;
}

.hero-section {
position: relative;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(49, 130, 206, 0.8));
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
color: var(--bg-white);
max-width: 800px;
padding: 0 20px;
}

.hero-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.cta-button {
display: inline-block;
background-color: var(--accent-color);
color: var(--bg-white);
padding: 1rem 2.5rem;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
border: 2px solid var(--accent-color);
}

.cta-button:hover {
background-color: transparent;
color: var(--bg-white);
border-color: var(--bg-white);
transform: translateY(-2px);
}

.glow-button {
box-shadow: 0 4px 20px rgba(49, 130, 206, 0.4);
}

.glow-button:hover {
box-shadow: 0 6px 30px rgba(49, 130, 206, 0.6);
}

.page-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
padding: 4rem 0;
text-align: center;
}

.page-header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}

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

.section-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
color: var(--primary-color);
}

.features-section,
.whitepaper-section,
.admin-preview-section,
.about-intro-section,
.team-section,
.values-section,
.blog-section,
.newsletter-section,
.contact-section,
.map-section {
padding: 5rem 0;
}

.features-section {
background-color: var(--bg-light);
}

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

.feature-card {
background-color: var(--bg-white);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
color: var(--accent-color);
margin-bottom: 1.5rem;
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

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

.whitepaper-header {
text-align: center;
margin-bottom: 4rem;
}

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

.wp-chapter {
display: grid;
grid-template-columns: 80px 1fr;
gap: 2rem;
margin-bottom: 4rem;
align-items: start;
}

.chapter-number {
font-size: 3rem;
font-weight: 700;
color: var(--accent-color);
opacity: 0.3;
}

.chapter-content h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

.chapter-content p {
margin-bottom: 1rem;
color: var(--text-light);
line-height: 1.8;
}

.chapter-image {
width: 100%;
border-radius: 12px;
margin-top: 1.5rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.whitepaper-cta {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
padding: 3rem;
border-radius: 12px;
text-align: center;
margin-top: 4rem;
}

.whitepaper-cta h3 {
font-size: 2rem;
margin-bottom: 1rem;
}

.whitepaper-cta p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.disclaimer {
background-color: rgba(255,255,255,0.1);
padding: 1.5rem;
border-radius: 8px;
margin-top: 2rem;
font-size: 0.9rem;
line-height: 1.6;
}

.admin-frame {
max-width: 1000px;
margin: 0 auto;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.frame-header {
background-color: #2d3748;
padding: 0.75rem 1rem;
display: flex;
align-items: center;
gap: 1rem;
}

.frame-buttons {
display: flex;
gap: 0.5rem;
}

.frame-btn {
width: 12px;
height: 12px;
border-radius: 50%;
}

.frame-btn.close { background-color: #fc5c65; }
.frame-btn.minimize { background-color: #fed330; }
.frame-btn.maximize { background-color: #26de81; }

.frame-title {
color: #a0aec0;
font-size: 0.9rem;
}

.frame-content {
background-color: var(--bg-light);
}

.dashboard-image {
width: 100%;
display: block;
}

.cta-final-section {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
padding: 5rem 0;
}

.cta-final-content {
text-align: center;
color: var(--bg-white);
}

.cta-final-content h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-final-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
}

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

.about-intro-text h2 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.about-intro-text p {
margin-bottom: 1rem;
color: var(--text-light);
line-height: 1.8;
}

.about-intro-image img {
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

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

.team-card {
background-color: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.team-card h3 {
font-size: 1.3rem;
color: var(--primary-color);
padding: 1rem 1.5rem 0.5rem;
}

.team-role {
color: var(--accent-color);
font-weight: 600;
padding: 0 1.5rem;
font-size: 0.9rem;
}

.team-bio {
padding: 1rem 1.5rem 1.5rem;
color: var(--text-light);
line-height: 1.6;
}

.values-section {
background-color: var(--bg-light);
}

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

.value-item {
background-color: var(--bg-white);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--accent-color);
opacity: 0.3;
margin-bottom: 1rem;
}

.value-item h3 {
font-size: 1.3rem;
color: var(--primary-color);
margin-bottom: 0.75rem;
}

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

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

.cta-box {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
padding: 3rem;
border-radius: 12px;
text-align: center;
}

.cta-box h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.cta-box p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.9;
}

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

.blog-card {
background-color: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
position: relative;
overflow: hidden;
}

.blog-image img {
width: 100%;
height: 220px;
object-fit: cover;
transition: transform 0.3s ease;
}

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

.blog-category {
position: absolute;
top: 1rem;
left: 1rem;
background-color: var(--accent-color);
color: var(--bg-white);
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}

.blog-content {
padding: 1.5rem;
}

.blog-content h2 {
font-size: 1.3rem;
margin-bottom: 0.75rem;
}

.blog-content h2 a {
color: var(--primary-color);
transition: color 0.3s ease;
}

.blog-content h2 a:hover {
color: var(--accent-color);
}

.blog-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
font-size: 0.85rem;
color: var(--text-light);
}

.blog-meta span {
display: flex;
align-items: center;
gap: 0.4rem;
}

.blog-meta svg {
flex-shrink: 0;
}

.blog-content p {
color: var(--text-light);
line-height: 1.6;
margin-bottom: 1rem;
}

.read-more {
color: var(--accent-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.newsletter-section {
background-color: var(--bg-light);
}

.newsletter-box {
max-width: 600px;
margin: 0 auto;
text-align: center;
background-color: var(--bg-white);
padding: 3rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newsletter-box h2 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.newsletter-box p {
color: var(--text-light);
margin-bottom: 2rem;
}

.newsletter-form {
display: flex;
gap: 1rem;
}

.newsletter-form input {
flex: 1;
padding: 0.9rem 1.2rem;
border: 2px solid var(--border-color);
border-radius: 50px;
font-size: 1rem;
}

.newsletter-form input:focus {
outline: none;
border-color: var(--accent-color);
}

.newsletter-form button {
padding: 0.9rem 2rem;
border: none;
cursor: pointer;
white-space: nowrap;
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
font-size: 1.8rem;
color: var(--primary-color);
margin-bottom: 2rem;
}

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

.form-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.form-group label {
font-weight: 600;
color: var(--text-dark);
}

.form-group input,
.form-group textarea {
padding: 0.9rem;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent-color);
}

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

.contact-item {
display: flex;
gap: 1.5rem;
}

.contact-icon {
color: var(--accent-color);
flex-shrink: 0;
}

.contact-text h3 {
font-size: 1.1rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.contact-text p,
.contact-text a {
color: var(--text-light);
line-height: 1.6;
}

.social-connect {
margin-top: 2rem;
}

.social-connect h3 {
font-size: 1.1rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.map-placeholder {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
margin-top: 2rem;
}

.map-placeholder img {
width: 100%;
}

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

.post-header {
background-color: var(--bg-light);
padding: 3rem 0;
}

.post-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1.5rem;
font-size: 0.9rem;
}

.post-category {
background-color: var(--accent-color);
color: var(--bg-white);
padding: 0.4rem 1rem;
border-radius: 20px;
font-weight: 600;
}

.post-date,
.post-readtime {
color: var(--text-light);
}

.post-header h1 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
line-height: 1.2;
}

.post-subtitle {
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 2rem;
}

.post-featured-image {
width: 100%;
max-width: 900px;
margin: 2rem auto 0;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

.content-section {
margin-bottom: 3rem;
}

.content-section h2 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.content-section p {
margin-bottom: 1.5rem;
color: var(--text-dark);
line-height: 1.9;
font-size: 1.05rem;
}

.post-disclaimer {
background-color: var(--bg-light);
padding: 2rem;
border-radius: 12px;
border-left: 4px solid var(--warning-color);
margin-top: 3rem;
}

.post-disclaimer h3 {
color: var(--warning-color);
margin-bottom: 0.75rem;
}

.post-disclaimer p {
color: var(--text-light);
font-size: 0.95rem;
}

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

.related-posts h2 {
font-size: 2rem;
text-align: center;
color: var(--primary-color);
margin-bottom: 2.5rem;
}

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

.related-card {
background-color: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

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

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

.related-card h3 {
padding: 1.5rem;
font-size: 1.1rem;
}

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

.main-footer {
background-color: var(--primary-color);
color: var(--bg-white);
padding: 3rem 0 1rem;
}

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

.footer-column h4 {
font-size: 1.2rem;
margin-bottom: 1rem;
}

.footer-column p {
color: rgba(255,255,255,0.8);
line-height: 1.6;
margin-bottom: 1rem;
}

.footer-column ul {
list-style: none;
}

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

.footer-column a {
color: rgba(255,255,255,0.8);
transition: color 0.3s ease;
}

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

.contact-info li {
display: flex;
align-items: start;
gap: 0.75rem;
color: rgba(255,255,255,0.8);
}

.contact-info svg {
flex-shrink: 0;
margin-top: 0.2rem;
}

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

.social-links a {
color: rgba(255,255,255,0.8);
transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
color: var(--bg-white);
transform: translateY(-3px);
}

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

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--bg-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
padding: 1.5rem;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.cookie-banner.show {
transform: translateY(0);
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
}

.cookie-text h4 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}

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

.cookie-text a {
color: var(--accent-color);
text-decoration: underline;
}

.cookie-actions {
display: flex;
gap: 1rem;
flex-shrink: 0;
}

.cookie-btn {
padding: 0.7rem 1.5rem;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.cookie-btn.customize {
background-color: var(--bg-light);
color: var(--text-dark);
}

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

.cookie-btn:hover {
transform: translateY(-2px);
}

.thank-you-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.6);
display: flex;
align-items: center;
justify-content: center;
z-index: 10001;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.thank-you-modal.show {
opacity: 1;
visibility: visible;
}

.modal-content {
background-color: var(--bg-white);
border-radius: 12px;
width: 90%;
max-width: 500px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
transform: scale(0.9);
transition: transform 0.3s ease;
}

.thank-you-modal.show .modal-content {
transform: scale(1);
}

.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem;
border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
color: var(--primary-color);
font-size: 1.5rem;
}

.modal-close {
background: none;
border: none;
font-size: 2rem;
color: var(--text-light);
cursor: pointer;
line-height: 1;
padding: 0;
width: 30px;
height: 30px;
}

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

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

.success-icon {
color: var(--success-color);
margin: 0 auto 1.5rem;
}

.modal-body p {
color: var(--text-light);
font-size: 1.05rem;
line-height: 1.6;
}

@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 80px;
left: -100%;
flex-direction: column;
background-color: var(--bg-white);
width: 100%;
padding: 2rem;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
transition: left 0.3s ease;
}

.nav-menu.active {
left: 0;
}

.mobile-toggle {
display: flex;
}

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

.hero-subtitle {
font-size: 1rem;
}

.section-title {
font-size: 2rem;
}

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

.wp-chapter {
grid-template-columns: 1fr;
}

.chapter-number {
font-size: 2rem;
}

.cookie-content {
flex-direction: column;
text-align: center;
}

.cookie-actions {
width: 100%;
flex-direction: column;
}

.newsletter-form {
flex-direction: column;
}
}

@media (max-width: 480px) {
.hero-section {
height: 500px;
}

.hero-title {
font-size: 1.75rem;
}

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