:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099cc;
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --light-text: #ffffff;
    --gray-text: #a0aec0;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background: var(--darker-bg);
    overflow-x: hidden;
}

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

.primary-navigation {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo img {
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-speed);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 5px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 14, 39, 0.9) 100%);
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--gray-text);
}

.neon-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-gradient);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-glow);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.neon-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.neon-button.large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

.neon-button.small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.page-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(10, 14, 39, 0.9) 100%);
    padding: 80px 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
}

.features-section,
.transition-section,
.risk-management-section,
.thinking-section,
.values-section,
.about-intro-section,
.team-section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-intro,
.section-subtitle,
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--gray-text);
    font-size: 1.1rem;
}

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

.feature-card,
.value-item,
.team-member-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all var(--transition-speed);
}

.feature-card:hover,
.value-item:hover,
.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.feature-icon,
.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3,
.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.semi-transparent {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.column-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.column-text p {
    margin-bottom: 20px;
    color: var(--gray-text);
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--gray-text);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.column-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.risk-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -12px;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.timeline-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.large-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin: 30px 0;
}

.full-width-image {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 14, 39, 0.9) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.responsibility-statement {
    margin-top: 50px;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    color: var(--gray-text);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.latest-posts-section,
.blog-container {
    padding: 80px 20px;
}

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

.post-preview-card,
.blog-post-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all var(--transition-speed);
}

.post-preview-card:hover,
.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.post-preview-card img,
.blog-post-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-preview-card h3,
.blog-post-card h2 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.post-preview-card p,
.post-content {
    padding: 0 20px 20px;
    color: var(--gray-text);
}

.read-more,
.read-more-btn {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color var(--transition-speed);
}

.read-more:hover,
.read-more-btn:hover {
    color: var(--light-text);
}

.post-meta {
    padding: 20px 20px 0;
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
}

.post-date,
.post-category {
    color: var(--gray-text);
}

.post-category {
    color: var(--primary-color);
}

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

.member-role {
    color: var(--primary-color);
    font-weight: bold;
    margin: 10px 0;
}

.member-bio {
    color: var(--gray-text);
    line-height: 1.6;
}

.about-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.intro-text p {
    margin-bottom: 20px;
    color: var(--gray-text);
    line-height: 1.8;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 14, 39, 0.9) 100%);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.contact-main {
    padding: 60px 20px;
}

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

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-details p,
.contact-details a {
    color: var(--gray-text);
    text-decoration: none;
}

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

.map-section {
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.map-placeholder img {
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

.form-container {
    padding: 40px;
    border-radius: 15px;
}

.form-container h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-container > p {
    color: var(--gray-text);
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--light-text);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
}

.checkbox-label span {
    color: var(--gray-text);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 14, 39, 0.9) 100%);
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--gray-text);
    margin-bottom: 25px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    border: 2px solid var(--primary-color);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-text);
}

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

.modal-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--gray-text);
    margin-bottom: 15px;
}

.blog-post-article {
    background: var(--dark-bg);
}

.post-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(10, 14, 39, 0.9) 100%);
    padding: 60px 20px;
}

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

.post-meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.post-meta-info span {
    color: var(--gray-text);
}

.reading-time {
    color: var(--primary-color);
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.post-excerpt {
    font-size: 1.2rem;
    color: var(--gray-text);
}

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

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

.post-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
}

.post-content {
    color: var(--gray-text);
    line-height: 1.8;
}

.post-content h2 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

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

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

.sidebar-widget {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.related-posts a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.related-posts a:hover {
    color: var(--primary-color);
}

.cta-widget {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 14, 39, 0.5) 100%);
    text-align: center;
}

.cta-widget p {
    color: var(--gray-text);
    margin-bottom: 15px;
}

.post-navigation {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
}

.nav-back,
.nav-next {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color var(--transition-speed);
}

.nav-back:hover,
.nav-next:hover {
    color: var(--light-text);
}

.newsletter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 14, 39, 0.9) 100%);
}

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

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--gray-text);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.newsletter-form input {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    flex: 1;
    max-width: 350px;
}

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

.site-footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    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 h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: var(--gray-text);
    line-height: 1.8;
}

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

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

.footer-links a {
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--gray-text);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    z-index: 1500;
    border-top: 2px solid var(--primary-color);
    display: none;
}

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

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

.cookie-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-content p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: bold;
    transition: all var(--transition-speed);
}

.cookie-btn.accept-all {
    background: var(--accent-gradient);
    color: var(--light-text);
    border: none;
}

.cookie-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

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

    .two-column-layout,
    .about-intro-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .posts-preview-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .post-content-wrapper {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
    }

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

    .newsletter-form input {
        max-width: 100%;
    }

    .cookie-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }

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