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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --border-color: #e2e8f0;
    --shadow: 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;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px 20px;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cookie-btn.accept:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cookie-btn.reject {
    background: var(--danger-color);
    color: white;
}

.cookie-btn.reject:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.cookie-btn.customize {
    background: white;
    color: var(--dark-color);
}

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

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 5px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.cookie-link:hover {
    opacity: 1;
}

/* Header & Navigation */
.main-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-image {
    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(30, 41, 59, 0.95) 0%, rgba(37, 99, 235, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 300;
    font-style: italic;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button-3d {
    display: inline-block;
    position: relative;
    padding: 18px 45px;
    background: var(--success-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.cta-button-3d .button-face {
    display: block;
    transition: transform 0.3s;
}

.cta-button-3d .button-face:last-child {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.cta-button-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.cta-button-3d:hover .button-face:first-child {
    transform: translateY(-100%);
}

.cta-button-3d:hover .button-face:last-child {
    top: 50%;
    transform: translateY(-50%);
}

.cta-button-3d.primary {
    background: var(--primary-color);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.cta-button-3d.primary:hover {
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.cta-button-3d.secondary {
    background: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
}

.cta-button-3d.secondary:hover {
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.4);
}

/* Section Styles */
.features-section,
.transition-section,
.risk-section,
.thinking-section,
.cta-section,
.responsibility-section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.subtitle-en {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-card p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
}

/* Transition Section */
.transition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transition-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.transition-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.transition-list {
    list-style: none;
    margin-top: 30px;
}

.transition-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

.transition-list i {
    color: var(--success-color);
    font-size: 1.3rem;
}

.transition-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

/* Risk Section */
.risk-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #e0e7ff 100%);
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.risk-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.risk-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.risk-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

/* Thinking Section */
.thinking-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.thinking-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thinking-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--text-color);
    line-height: 1.8;
}

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

.thinking-col {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.thinking-col h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.thinking-col i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.thinking-col p {
    color: var(--text-color);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsibility Section */
.responsibility-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--warning-color);
    box-shadow: var(--shadow-lg);
}

.responsibility-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.responsibility-box i {
    color: var(--warning-color);
}

.responsibility-box p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0f172a 100%);
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 3px;
    font-size: 1.1rem;
}

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

/* Blog Page Styles */
.page-header-blog,
.page-header-about,
.page-header-contact {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header-blog h1,
.page-header-about h1,
.page-header-contact h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.blog-section {
    padding: 80px 20px;
}

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

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-content {
    padding: 30px;
}

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

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

.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

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

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

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

.blog-cta {
    background: linear-gradient(135deg, var(--light-color) 0%, #e0e7ff 100%);
    padding: 80px 20px;
    text-align: center;
}

.blog-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.blog-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-color);
}

/* About Page Styles */
.about-intro {
    padding: 80px 20px;
    background: white;
}

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

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

.about-intro-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

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

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-color);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

.team-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-color) 0%, #e0e7ff 100%);
}

.team-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: -30px;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.team-bio {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-expertise span {
    background: var(--light-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.team-expertise i {
    color: var(--success-color);
    font-size: 0.75rem;
}

.about-stats {
    padding: 80px 20px;
    background: white;
}

.about-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-color) 0%, #e0e7ff 100%);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.3rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-hours {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-map {
    margin-top: 30px;
}

.contact-map h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.map-placeholder {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-overlay i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.map-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.form-intro {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    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: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.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);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.6;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

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

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

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon i {
    font-size: 3rem;
    color: white;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.modal-content p {
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.7;
}

.modal-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-color) 0%, #e0e7ff 100%);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-color);
}

/* Post Single Styles */
.post-single {
    background: white;
}

.post-header-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.post-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 40px 20px;
}

.post-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-header-overlay h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-meta-header {
    display: flex;
    gap: 25px;
    color: white;
    font-size: 0.95rem;
}

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

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

.post-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.post-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 35px;
    line-height: 1.8;
    padding: 25px;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.post-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.post-content p {
    margin-bottom: 20px;
}

.post-image-inline {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin: 35px 0;
    box-shadow: var(--shadow-lg);
}

.post-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.post-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.post-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.related-posts {
    list-style: none;
}

.related-posts li {
    margin-bottom: 20px;
}

.related-posts a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    padding: 10px;
    border-radius: 8px;
}

.related-posts a:hover {
    background: white;
    box-shadow: var(--shadow);
}

.related-posts img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-posts span {
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.categories-list a:hover {
    background: white;
    color: var(--primary-color);
    padding-left: 15px;
}

.categories-list i {
    color: var(--primary-color);
}

.post-navigation {
    background: var(--light-color);
    padding: 40px 20px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-link-prev,
.nav-link-next {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-link-prev:hover,
.nav-link-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .post-content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .transition-content,
    .about-intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .post-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-color);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.5s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .blog-posts-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .post-header-overlay h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .contact-form-wrapper,
    .modal-content {
        padding: 25px;
    }
}