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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #000000;
    padding: 1rem 2rem;
    border-bottom: 2px solid #FFF800;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 140px;
    width: auto;
}

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

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #FFF800;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 80px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 2px solid #FFF800;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        border-bottom: 1px solid #333;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .nav-links a:hover {
        background-color: #1a1a1a;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 3px solid #FFF800;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #FFF800;
    font-weight: 700;
}

.hero .tagline {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #2740CC;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #FFF800;
    color: #000000;
    transform: translateY(-2px);
}

/* Section Styling */
section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h2 {
    font-size: 2.5rem;
    color: #FFF800;
    margin-bottom: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    color: #51A6F5;
    margin-bottom: 1rem;
}

/* Four Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-left: 5px solid #FFF800;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-left-color: #2740CC;
    box-shadow: 0 10px 30px rgba(255, 248, 0, 0.2);
}

.pillar-card h3 {
    color: #FFF800;
    margin-bottom: 1rem;
}

/* Ventures Section */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.venture-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-top: 4px solid #2740CC;
    text-align: center;
    transition: all 0.3s ease;
}

.venture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(39, 64, 204, 0.3);
}

.venture-logo {
    margin-bottom: 1.5rem;
}

.venture-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.venture-card h3 {
    color: #FFF800;
    margin-bottom: 1rem;
}

.venture-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.learn-more {
    display: inline-block;
    color: #51A6F5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #FFF800;
}

/* About Page */
.about-intro {
    background-color: #1a1a1a;
    padding: 3rem;
    margin-bottom: 3rem;
    border-left: 5px solid #FFF800;
}

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

.cred-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-top: 3px solid #2740CC;
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-left: 5px solid #2740CC;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-left-color: #FFF800;
    box-shadow: 0 10px 30px rgba(255, 248, 0, 0.2);
}

.service-card h3 {
    color: #FFF800;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    color: #51A6F5;
    font-weight: 700;
    margin: 1rem 0;
}

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #07F70A;
    font-weight: bold;
}

/* Chuckisms Page */
.chuckisms-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.chuckism-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-left: 5px solid #FFF800;
    position: relative;
}

.chuckism-card:before {
    content: """;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #2740CC;
    opacity: 0.3;
}

.chuckism-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.chuckism-context {
    color: #cccccc;
    font-size: 1rem;
}

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

.contact-form, .contact-info {
    background-color: #1a1a1a;
    padding: 2.5rem;
}

.contact-form {
    border-top: 4px solid #FFF800;
}

.contact-info {
    border-top: 4px solid #2740CC;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFF800;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #000000;
    border: 1px solid #333;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFF800;
}

.submit-btn {
    background-color: #2740CC;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #FFF800;
    color: #000000;
}

.contact-info h3 {
    color: #FFF800;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1.5rem;
    color: #51A6F5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FFF800;
}

/* Footer */
footer {
    background-color: #000000;
    color: #cccccc;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid #FFF800;
    margin-top: 4rem;
}

footer p {
    font-size: 0.9rem;
}

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

    .hero .tagline {
        font-size: 1.3rem;
    }

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

    .pillars-grid, .services-grid {
        grid-template-columns: 1fr;
    }
}
