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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

.cta-button {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-primary {
    background: #fff;
    color: #2563eb;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 10px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Main Content */
main {
    padding: 20px 0;
    margin-top: -95px;
    margin-bottom: -95px;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-solution {
    background: #f8fafc;
    padding: 60px 0;
    margin: 80px 0;
}

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

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* CEO Section */
.ceo-section {
    background: #1f2937;
    color: white;
    padding: 80px 0;
    margin: 80px 0;
}

.ceo-section h2 {
    color: white;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.ceo-opportunity {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.ceo-opportunity h3 {
    margin-bottom: 1rem;
    color: #60a5fa;
}

.ceo-opportunity ul {
    list-style: none;
    margin: 1rem 0;
}

.ceo-opportunity li {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.ceo-opportunity li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Section */
.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.team-member h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: #f8fafc;
    padding: 60px 0;
    text-align: center;
}

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

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-item h4 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.contact-item a {
    word-break: break-all;
    overflow-wrap: break-word;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #60a5fa;
}

.footer-section p, .footer-section a {
    color: #d1d5db;
    text-decoration: none;
    margin: 0.5rem 0;
}

.footer-section a:hover {
    color: white;
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.blog-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-card-content {
    padding: 2rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.blog-card h2 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: #2563eb;
}

.blog-meta {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #1d4ed8;
}

/* Individual Blog Post Styles */
.blog-post-header {
    background: #f8fafc;
    padding: 120px 0 60px;
    text-align: center;
}

.blog-post-title {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-meta {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    text-align: left;
    color: #1f2937;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    color: #374151;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content strong {
    font-weight: 600;
    color: #1f2937;
}

.blog-post-content em {
    font-style: italic;
}

.blog-post-content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4b5563;
}

.blog-post-content a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post-content a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.blog-navigation {
    text-align: center;
    margin: 3rem 0;
}

.back-to-blog {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

.back-to-blog:hover {
    background: #1d4ed8;
}

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

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

    .two-column,
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

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

    .btn-primary,
    .btn-secondary {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    .blog-post-title {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
section {
    animation: fadeInUp 0.8s ease-out;
}