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

:root {
--primary-color: #2563eb;
--secondary-color: #7c3aed;
--accent-color: #0891b2;
--text-dark: #1f2937;
--text-light: #6b7280;
--bg-light: #f9fafb;
--bg-white: #ffffff;
--border-color: #e5e7eb;
--success-color: #10b981;
--warning-color: #f59e0b;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--bg-light);
}

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

.main-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 15px 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

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

.logo-section {
display: flex;
align-items: center;
gap: 15px;
}

.logo-section img {
border-radius: 50%;
border: 3px solid white;
}

.site-title {
color: white;
font-size: 28px;
font-weight: 700;
letter-spacing: -0.5px;
}

.primary-nav ul {
display: flex;
list-style: none;
gap: 30px;
}

.primary-nav a {
color: white;
text-decoration: none;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-radius: 6px;
transition: all 0.3s ease;
}

.primary-nav a:hover {
background-color: rgba(255,255,255,0.2);
transform: translateY(-2px);
}

.mobile-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 24px;
cursor: pointer;
}

.hero-area {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 80px 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}

.hero-content h1 {
color: white;
font-size: 48px;
margin-bottom: 20px;
font-weight: 800;
line-height: 1.2;
}

.hero-subtitle {
color: rgba(255,255,255,0.95);
font-size: 20px;
margin-bottom: 30px;
}

.cta-button {
display: inline-flex;
align-items: center;
gap: 10px;
background-color: var(--accent-color);
color: white;
padding: 15px 35px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 18px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
background-color: #0e7490;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-visual img {
width: 100%;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.quick-summary {
background: linear-gradient(to right, #fbbf24, #f59e0b);
padding: 20px;
margin: 30px 0;
}

.summary-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 20px;
color: white;
}

.summary-container i {
font-size: 32px;
}

.summary-container p {
font-size: 16px;
margin: 0;
}

.features-grid {
padding: 80px 20px;
background-color: var(--bg-white);
}

.section-heading {
text-align: center;
font-size: 38px;
margin-bottom: 50px;
color: var(--text-dark);
font-weight: 700;
}

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

.feature-item {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
border: 2px solid transparent;
}

.feature-item:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
border-color: var(--primary-color);
}

.icon-wrapper {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.icon-wrapper i {
color: white;
font-size: 32px;
}

.feature-item h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--text-dark);
}

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

.random-fact-section {
padding: 50px 20px;
background-color: var(--bg-light);
}

.fact-box {
background: linear-gradient(135deg, #6366f1, #8b5cf6);
padding: 40px;
border-radius: 15px;
text-align: center;
color: white;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.fact-box i {
font-size: 48px;
margin-bottom: 20px;
opacity: 0.9;
}

.fact-box h3 {
font-size: 26px;
margin-bottom: 15px;
}

.fact-box p {
font-size: 18px;
line-height: 1.7;
}

.latest-posts {
padding: 80px 20px;
background-color: var(--bg-white);
}

.posts-preview {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
}

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

.post-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

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

.post-info {
padding: 25px;
}

.post-info h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--text-dark);
}

.post-info p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.7;
}

.read-more {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

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

.page-banner {
background: linear-gradient(135deg, #1e3a8a, #3b82f6);
padding: 100px 20px;
text-align: center;
position: relative;
}

.banner-overlay h1 {
color: white;
font-size: 52px;
margin-bottom: 15px;
font-weight: 800;
}

.banner-overlay p {
color: rgba(255,255,255,0.9);
font-size: 22px;
}

.blog-main-content {
padding: 60px 20px;
background-color: var(--bg-white);
}

.blog-grid {
display: flex;
flex-direction: column;
gap: 40px;
}

.blog-post-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 25px rgba(0,0,0,0.1);
display: grid;
grid-template-columns: 400px 1fr;
gap: 30px;
transition: all 0.3s ease;
}

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

.post-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-details {
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
}

.post-category {
display: inline-flex;
align-items: center;
gap: 8px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
width: fit-content;
margin-bottom: 15px;
}

.post-details h2 {
font-size: 28px;
margin-bottom: 15px;
color: var(--text-dark);
}

.post-details h2 a {
color: var(--text-dark);
text-decoration: none;
transition: color 0.3s ease;
}

.post-details h2 a:hover {
color: var(--primary-color);
}

.post-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
color: var(--text-light);
font-size: 14px;
}

.post-meta span {
display: flex;
align-items: center;
gap: 6px;
}

.post-details > p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.article-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.article-link:hover {
gap: 12px;
color: var(--secondary-color);
}

.about-intro {
padding: 60px 20px;
background-color: var(--bg-white);
}

.intro-content {
max-width: 900px;
margin: 0 auto;
}

.intro-content h2 {
font-size: 36px;
margin-bottom: 25px;
color: var(--text-dark);
}

.intro-content p {
color: var(--text-light);
font-size: 18px;
line-height: 1.9;
margin-bottom: 20px;
}

.team-section {
padding: 80px 20px;
background-color: var(--bg-light);
}

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

.team-member {
background: white;
border-radius: 15px;
padding: 30px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

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

.team-member img {
width: 100%;
max-width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
border: 5px solid var(--primary-color);
}

.team-member h3 {
font-size: 24px;
margin-bottom: 8px;
color: var(--text-dark);
}

.team-member .role {
color: var(--primary-color);
font-weight: 600;
margin-bottom: 15px;
font-size: 16px;
}

.team-member .bio {
color: var(--text-light);
line-height: 1.7;
font-size: 15px;
}

.values-section {
padding: 80px 20px;
background-color: var(--bg-white);
}

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

.value-item {
text-align: center;
padding: 35px;
background: var(--bg-light);
border-radius: 12px;
transition: all 0.3s ease;
}

.value-item:hover {
background: white;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.value-item i {
font-size: 48px;
color: var(--primary-color);
margin-bottom: 20px;
}

.value-item h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--text-dark);
}

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

.contact-content {
padding: 60px 20px;
background-color: var(--bg-white);
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
max-width: 1200px;
margin: 0 auto;
}

.contact-info-block h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--text-dark);
}

.contact-info-block > p {
color: var(--text-light);
margin-bottom: 30px;
font-size: 17px;
line-height: 1.8;
}

.info-items {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-card {
display: flex;
align-items: flex-start;
gap: 20px;
padding: 20px;
background: var(--bg-light);
border-radius: 10px;
transition: all 0.3s ease;
}

.info-card:hover {
background: white;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-card i {
font-size: 28px;
color: var(--primary-color);
margin-top: 5px;
}

.info-card h3 {
font-size: 18px;
margin-bottom: 8px;
color: var(--text-dark);
}

.info-card p {
color: var(--text-light);
line-height: 1.7;
}

.contact-form-block h2 {
font-size: 32px;
margin-bottom: 25px;
color: var(--text-dark);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-group label {
font-weight: 600;
color: var(--text-dark);
display: flex;
align-items: center;
gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 12px 15px;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 16px;
font-family: inherit;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 15px 30px;
border: none;
border-radius: 8px;
font-size: 18px;
font-weight: 600;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
transition: all 0.3s ease;
}

.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
}

.post-single {
background-color: var(--bg-white);
}

.post-header-image {
width: 100%;
max-height: 500px;
overflow: hidden;
}

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

.post-container {
max-width: 900px;
margin: 0 auto;
padding: 60px 20px;
}

.post-meta-info {
display: flex;
gap: 20px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.category-badge,
.date-badge,
.read-time {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
}

.category-badge {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
}

.date-badge,
.read-time {
background: var(--bg-light);
color: var(--text-light);
}

.post-container h1 {
font-size: 42px;
margin-bottom: 30px;
color: var(--text-dark);
line-height: 1.3;
}

.post-content h2 {
font-size: 32px;
margin-top: 40px;
margin-bottom: 20px;
color: var(--text-dark);
}

.post-content p {
color: var(--text-light);
font-size: 18px;
line-height: 1.9;
margin-bottom: 20px;
}

.site-footer {
background: linear-gradient(135deg, #1f2937, #111827);
color: white;
padding: 60px 20px 20px;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-section h4 {
font-size: 20px;
margin-bottom: 20px;
color: white;
}

.footer-section p {
color: rgba(255,255,255,0.8);
line-height: 1.8;
margin-bottom: 10px;
}

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

.footer-section ul li {
margin-bottom: 12px;
}

.footer-section ul li a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
}

.footer-section ul li a:hover {
color: white;
transform: translateX(5px);
}

.registration-info {
font-size: 14px;
font-style: italic;
opacity: 0.7;
margin-top: 15px;
}

.footer-bottom {
max-width: 1200px;
margin: 0 auto;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
text-align: center;
color: rgba(255,255,255,0.7);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
padding: 25px;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s ease;
}

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

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

.cookie-text h4 {
font-size: 20px;
margin-bottom: 10px;
color: var(--text-dark);
display: flex;
align-items: center;
gap: 10px;
}

.cookie-text p {
color: var(--text-light);
margin-bottom: 10px;
line-height: 1.6;
}

.cookie-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
}

.cookie-actions {
display: flex;
gap: 15px;
}

.cookie-btn {
padding: 12px 25px;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}

.cookie-btn.accept-all {
background: var(--success-color);
color: white;
}

.cookie-btn.accept-all:hover {
background: #059669;
}

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

.cookie-btn.customize:hover {
background: var(--border-color);
}

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

.cookie-btn.decline:hover {
border-color: var(--text-light);
}

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

.thank-you-modal.active {
display: flex;
}

.modal-content {
background: white;
padding: 50px;
border-radius: 15px;
text-align: center;
max-width: 500px;
box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.modal-content i {
font-size: 64px;
color: var(--success-color);
margin-bottom: 20px;
}

.modal-content h2 {
font-size: 32px;
margin-bottom: 15px;
color: var(--text-dark);
}

.modal-content p {
color: var(--text-light);
margin-bottom: 30px;
font-size: 18px;
}

.close-modal {
background: var(--primary-color);
color: white;
padding: 12px 35px;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.close-modal:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

@media (max-width: 968px) {
.primary-nav {
display: none;
}

.mobile-toggle {
display: block;
}

.hero-area {
grid-template-columns: 1fr;
padding: 60px 20px;
}

.hero-content h1 {
font-size: 36px;
}

.blog-post-card {
grid-template-columns: 1fr;
}

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

.cookie-content {
flex-direction: column;
align-items: flex-start;
}

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

.cookie-btn {
width: 100%;
}
}

@media (max-width: 640px) {
.hero-content h1 {
font-size: 28px;
}

.hero-subtitle {
font-size: 16px;
}

.section-heading {
font-size: 28px;
}

.post-container h1 {
font-size: 32px;
}

.banner-overlay h1 {
font-size: 36px;
}
}
