/* Variables */
:root {
    --primary: #e31837;
    --primary-dark: #c41430;
    --primary-light: #ff1f41;
    --secondary: #1a1a1a;
    --secondary-light: #2a2a2a;
    --accent: #ff1f41;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --white: #ffffff;
    --gradient-start: #e31837;
    --gradient-end: #ff1f41;
    --gray-bg: #f5f5f5;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--secondary);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    background-color: var(--secondary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

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

.nav-menu li a {
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* Cards */
.analytics-grid,
.solutions-grid,
.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.analytics-grid {
    grid-template-columns: repeat(2, 1fr);
}

.solutions-grid,
.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.analytics-card,
.solution-card,
.feature-card {
    background: var(--secondary-light);
    padding: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.analytics-card:hover,
.solution-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-light);
    padding: 1rem 0 0.5rem;
    color: var(--text-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 0.5rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem 0;
        flex-direction: column;
    }

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

    .nav-toggle {
        display: block;
        color: var(--primary);
    }

    .analytics-grid,
    .solutions-grid,
    .features-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-in-out;
}

/* Particle Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--secondary-light);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-card i {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--secondary-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.blog-meta i {
    color: var(--primary);
}

/* Featured Article */
.article-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: var(--secondary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-image {
    height: 100%;
    min-height: 400px;
}

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

.article-content {
    padding: 3rem;
}

.article-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.article-content p {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--primary);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-card .count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .article-featured {
        grid-template-columns: 1fr;
    }
    
    .article-image {
        height: 300px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--secondary-light);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-card {
    background: var(--secondary-light);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary);
}

.info-card i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--secondary);
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-toggle {
        display: block;
        color: var(--primary);
    }

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

    .article-featured {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero .split-layout {
    text-align: left;
}

.hero-text {
    max-width: 600px;
}

.hero-image img,
.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
    background-color: var(--secondary-light);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Services */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-card {
    background: var(--secondary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-card h3,
.featured-card p {
    padding: 1rem;
    margin: 0;
}

.featured-card .btn-outline {
    margin: 0 1rem 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-card .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Why Us Section */
.why-us {
    background-color: var(--secondary-light);
    padding: 5rem 0;
}

.why-us .split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.why-us-content {
    padding-right: 2rem;
}

.why-us-image {
    position: sticky;
    top: 100px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: var(--secondary);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.feature-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 0.25rem;
}

.feature-list h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-list p {
    margin: 0;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .why-us .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-content {
        padding-right: 0;
    }

    .why-us-image {
        position: relative;
        top: 0;
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .why-us-image {
        height: 300px;
    }
    
    .feature-list li {
        padding: 1rem;
    }
}

/* CTA Section */
.cta-section {
    background: var(--secondary-light);
    position: relative;
    text-align: center;
    padding: 4rem 0;
    border: 1px solid rgba(227, 24, 55, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(227, 24, 55, 0.1), rgba(26, 26, 26, 0.1));
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Latest Insights */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card {
    background: var(--secondary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.insight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 1.5rem;
}

.insight-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid,
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        display: none;
    }
}

/* Vision Section */
.vision-section {
    background-color: var(--secondary-light);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.vision-card {
    text-align: center;
    padding: 2rem;
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.vision-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.vision-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

/* Founding Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.team-member .role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--secondary);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.client-info p {
    font-size: 0.9rem;
    margin: 0;
}

/* Startup Journey */
.startup-journey {
    position: relative;
    overflow: hidden;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 2rem;
}

.timeline-content {
    background: var(--secondary-light);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: auto;
    left: -2rem;
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vision-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .journey-timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 2rem;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 2rem;
    }

    .timeline-content::before {
        left: -2rem;
        right: auto;
    }
}

@media (max-width: 768px) {
    .vision-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* About Section */
.about-us-section .split-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.highlight-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .about-us-section .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        padding-right: 0;
    }

    .about-image {
        order: -1;
    }
}

/* Article Pages */
.article-header {
    position: relative;
    padding: 6rem 0 4rem;
    background-color: var(--secondary-light);
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.article-content {
    padding: 4rem 0;
}

.article-main-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto 3rem;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-primary);
}

.article-text h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--white);
}

.article-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--white);
}

.article-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-text ul,
.article-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.article-text li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.article-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: rgba(227, 24, 55, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

.related-articles {
    padding: 4rem 0;
    background: var(--secondary-light);
}

.related-articles h2 {
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

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

    .article-text h2 {
        font-size: 1.75rem;
    }

    .article-text h3 {
        font-size: 1.35rem;
    }
}

/* Logo Styles */
.logo {    font-family: 'Montserrat', sans-serif;    font-weight: bold;    font-size: 1.2em;    color: var(--primary);    padding: 0.25em 0.5em;    border: 2px solid var(--primary);    border-radius: 4px;    display: inline-block;    letter-spacing: 0.5px;    transition: all 0.3s ease;}.logo:hover {    background-color: var(--primary);    color: var(--white);}

/* Modern select dropdown for contact form */
.contact-form select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1.5px solid var(--primary);
    border-radius: 30px;
    background: var(--white) url('data:image/svg+xml;utf8,<svg fill="%23e31837" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 8.293a1 1 0 011.414 0L10 9.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 1rem center/1.2rem 1.2rem;
    font-size: 1rem;
    color: var(--secondary);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 2px 8px rgba(227,24,55,0.07);
    transition: border 0.2s, box-shadow 0.2s;
}
.contact-form select:focus {
    border-color: var(--primary-dark);
    outline: none;
    box-shadow: 0 0 0 2px rgba(227,24,55,0.15);
}
.contact-form option {
    color: var(--secondary);
}