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

body {
    font-family: 'Courier New', 'Consolas', monospace;
    background-color: #000000;
    color: #00FF00;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000;
    border-bottom: 2px solid #00FF00;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-image {
    width: 200px;
    height: auto;
}

.terminal-prompt {
    color: #00FF00;
    text-shadow: 0 0 5px #00FF00;
}

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

.nav-link {
    color: #00FF00;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    border: 1px solid #00FF00;
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    text-shadow: 0 0 5px #00FF00;
}

/* Main Content */
.main-content {
    margin-top: 160px;
    min-height: calc(100vh - 140px);
}</search>

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(45deg, #000000 0%, #001100 100%);
    border-bottom: 2px solid #00FF00;
}</search>

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: #00FF00;
    text-shadow: 0 0 15px #00FF00;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #00FF00;
    margin-bottom: 2rem;
    opacity: 0.8;
    text-align: center;
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-description p {
    text-align: center;
    color: rgba(0, 255, 0, 0.9);
    line-height: 1.6;
}

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

/* Page Header */
.page-header {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #00FF00;
}</search>

.page-title {
    font-size: 2.5rem;
    color: #00FF00;
    text-shadow: 0 0 10px #00FF00;
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #00FF00;
    opacity: 0.8;
    text-align: center;
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    color: #00FF00;
    text-shadow: 0 0 8px #00FF00;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #00FF00;
    padding-bottom: 0.5rem;
}

/* Buttons */
.cta-button,
.search-btn {
    background-color: transparent;
    color: #00FF00;
    border: 2px solid #00FF00;
    padding: 0.8rem 2rem;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.cta-button:hover,
.search-btn:hover {
    background-color: #00FF00;
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    text-shadow: none;
}

/* Search Section */
.search-section {
    padding: 2rem 0;
    text-align: center;
}

.search-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

#resourceSearch {
    flex: 1;
    background-color: transparent;
    border: 2px solid #00FF00;
    color: #00FF00;
    padding: 0.8rem;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 1rem;
}

#resourceSearch::placeholder {
    color: rgba(0, 255, 0, 0.6);
}

#resourceSearch:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Sections */
.features-section,
.resources-grid,
.process-section,
.timeline-section,
.contact-form-section,
.webinar-schedule,
.signup-section,
.upsell-section,
.mission-section,
.team-section,
.contact-info-section,
.testimonials-section {
    padding: 5rem 0;
}

/* Placeholder Styling */
.placeholder {
    color: rgba(0, 255, 0, 0.6);
    font-style: italic;
    text-align: center;
    padding: 2rem;
    border: 1px dashed rgba(0, 255, 0, 0.3);
    margin: 1rem 0;
}

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

.service-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00FF00;
    text-shadow: 0 0 10px #00FF00;
    filter: brightness(0) saturate(100%) invert(38%) sepia(95%) saturate(2000%) hue-rotate(95deg) brightness(1.2) contrast(1.5);
}

.service-title {
    color: #00FF00;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00FF00;
}

.service-description {
    color: rgba(0, 255, 0, 0.8);
    line-height: 1.6;
}

/* Use Cases (formerly Testimonials) */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 4rem;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4rem;
}

.testimonial-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    padding: 5rem 8rem;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    margin-bottom: 3rem;
    min-height: 800px;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-2px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: rgba(0, 255, 0, 0.9);
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-author {
    border-top: 3px solid rgba(0, 255, 0, 0.5);
    padding-top: 3rem;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    background-color: rgba(0, 255, 0, 0.03);
    padding: 3rem;
    border-radius: 12px;
    margin-left: 2rem;
    margin-right: 2rem;
}

.author-name {
    color: #00FF00;
    font-weight: bold;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #00FF00;
    letter-spacing: 1px;
}

.author-title {
    color: rgba(0, 255, 0, 0.9);
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    background-color: rgba(0, 255, 0, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(0, 255, 0, 0.4);
    text-shadow: 0 0 5px #00FF00;
}

/* Use case specific styling */
.use-case-title {
    color: #00FF00;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    text-shadow: 0 0 15px #00FF00;
    border-bottom: 3px solid #00FF00;
    padding-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.use-case-section {
    margin-bottom: 2rem;
}

.use-case-section h4 {
    color: #00FF00;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 3px #00FF00;
}

.use-case-section p {
    color: rgba(0, 255, 0, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.use-case-flow {
    background-color: rgba(0, 255, 0, 0.03);
    border-left: 3px solid #00FF00;
    padding: 1.5rem;
    margin: 1rem 0;
}

.use-case-kpis {
    background-color: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 4px;
}

/* Use case content styling */
.use-case-content {
    color: rgba(0, 255, 0, 0.9);
    line-height: 2.4;
    font-size: 1.3rem;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
    white-space: pre-line;
    box-sizing: border-box;
}

.use-case-content h4 {
    color: #00FF00;
    font-size: 1.6rem;
    margin: 3rem 0 2rem 0;
    text-shadow: 0 0 10px #00FF00;
    font-weight: bold;
    border-bottom: 3px solid rgba(0, 255, 0, 0.5);
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.use-case-content p {
    margin-bottom: 2rem;
    text-align: left;
    font-size: 1.3rem;
    line-height: 2.0;
}

.use-case-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
}

.use-case-content li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.use-case-content li {
    margin-bottom: 2.5rem;
    padding-left: 3rem;
    position: relative;
    line-height: 2.4;
    font-size: 1.3rem;
    text-align: left;
    display: block;
    min-height: 3rem;
    width: 100%;
    box-sizing: border-box;
    max-width: calc(100% - 3rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.use-case-content li:before {
    content: "▶";
    color: #00FF00;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 0 8px #00FF00;
    line-height: 2.4;
    display: block;
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 2px solid #00FF00;
    padding: 2rem 0;
}

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

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

.footer-section {
    text-align: left;
}

.footer-title {
    color: #00FF00;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00FF00;
}

.footer-text {
    color: rgba(0, 255, 0, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(0, 255, 0, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00FF00;
    text-shadow: 0 0 5px #00FF00;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 0, 0.3);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(0, 255, 0, 0.8);
    font-size: 0.9rem;
}

/* Resource Cards */
.resource-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.resource-card:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    transform: translateY(-5px);
    border-color: #00FF00;
}

.card-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    min-height: 3.5rem;
    position: relative;
}

.card-title {
    color: #00FF00;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 0 0 5px #00FF00;
    flex: 1;
    line-height: 1.2;
    word-wrap: break-word;
}

.price-tag {
    padding: 0.3rem 0.8rem;
    border: 1px solid #00FF00;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.price-tag.free {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00FF00;
}

.price-tag.paid {
    background-color: transparent;
    color: #00FF00;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-description {
    color: rgba(0, 255, 0, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.feature {
    color: rgba(0, 255, 0, 0.8);
    font-size: 0.9rem;
}

.card-button {
    width: 100%;
    background-color: transparent;
    color: #00FF00;
    border: 2px solid #00FF00;
    padding: 0.8rem 1.5rem;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    text-align: center;
    display: block;
    flex-shrink: 0;
}

.card-button:hover {
    background-color: #00FF00;
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    text-shadow: none;
}

.card-button.download,
.card-button.purchase,
.card-button.banner-button {
    border-color: #00FF00;
}

/* Ensure link buttons have same styling as button elements */
.card-button:link,
.card-button:visited,
.card-button:hover,
.card-button:active {
    text-decoration: none;
    color: inherit;
}

/* Banner button styling for special cards like Procrastination Buster */
.banner-button {
    width: 100% !important;
    background-color: transparent !important;
    color: #00FF00 !important;
    border: 2px solid #00FF00 !important;
    padding: 0.8rem 1.5rem !important;
    font-family: 'Courier New', 'Consolas', monospace !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: auto !important;
    text-align: center !important;
    display: block !important;
    flex-shrink: 0 !important;
}

.banner-button:hover {
    background-color: #00FF00 !important;
    color: #000000 !important;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5) !important;
}

/* Special styling for Procrastination Buster card */
.procrastination-buster-card .card-features {
    margin-bottom: 1rem;
}

/* Filter functionality */
.resource-card[style*="display: none"] {
    display: none !important;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 15px #00FF00;
    }
    to {
        text-shadow: 0 0 25px #00FF00, 0 0 35px #00FF00;
    }
}

@keyframes cardPulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.2);
    }
}

.resource-card:hover {
    animation: cardPulse 2s infinite;
}

/* Custom Build Page Styles */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.methodology-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    padding: 2rem;
    transition: all 0.3s ease;
}

.methodology-card:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.methodology-title {
    color: #00FF00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00FF00;
}

.methodology-description {
    color: rgba(0, 255, 0, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.methodology-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit {
    color: rgba(0, 255, 0, 0.8);
    font-size: 0.9rem;
}

.academic-note {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px dashed #00FF00;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.academic-note p {
    color: rgba(0, 255, 0, 0.9);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Timeline Styles */
.timeline-container {
    margin-top: 2rem;
    position: relative;
}

.timeline-progress {
    height: 4px;
    background-color: rgba(0, 255, 0, 0.2);
    position: relative;
    margin-bottom: 2rem;
}

.progress-bar {
    height: 100%;
    background-color: #00FF00;
    width: 0%;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.timeline-phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}

.timeline-phase {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-phase:hover {
    transform: translateY(-5px);
}

.phase-marker {
    width: 20px;
    height: 20px;
    background-color: #00FF00;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    transition: all 0.3s ease;
}

.timeline-phase:hover .phase-marker {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.phase-title {
    color: #00FF00;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px #00FF00;
}

.phase-duration {
    color: rgba(0, 255, 0, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.phase-details {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 1rem;
    margin-top: 1rem;
    text-align: left;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.timeline-phase:hover .phase-details {
    opacity: 1;
    max-height: none;
    overflow: visible;
    min-height: fit-content;
}

.phase-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-details li {
    color: rgba(0, 255, 0, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.phase-details li:before {
    content: ">";
    color: #00FF00;
    position: absolute;
    left: 0;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.form-intro p {
    color: rgba(0, 255, 0, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.custom-build-form {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-label {
    display: block;
    color: #00FF00;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 0 0 3px #00FF00;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #00FF00;
    color: #00FF00;
    padding: 0.8rem;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    border-color: #00FF00;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: rgba(0, 255, 0, 0.9);
    font-size: 0.9rem;
    cursor: pointer;
}

.form-checkbox {
    margin-right: 0.8rem;
}

.form-submit-btn {
    width: 100%;
    background-color: transparent;
    color: #00FF00;
    border: 2px solid #00FF00;
    padding: 1rem 2rem;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.form-submit-btn:hover {
    background-color: #00FF00;
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.submit-loading {
    display: none;
}

.form-submit-btn.loading .submit-text {
    display: none;
}

.form-submit-btn.loading .submit-loading {
    display: inline;
}

/* Webinar Page Styles */
.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.webinar-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.webinar-card:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-3px);
}

.webinar-date {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.day {
    color: #00FF00;
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 0 0 3px #00FF00;
}

.date {
    color: #00FF00;
    font-size: 1.1rem;
    font-weight: bold;
}

.time {
    color: rgba(0, 255, 0, 0.8);
    font-size: 0.9rem;
    margin-left: auto;
}

.webinar-title {
    color: #00FF00;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 5px #00FF00;
}

.webinar-description {
    color: rgba(0, 255, 0, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.webinar-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.webinar-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #00FF00;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.webinar-status.available {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00FF00;
}

.webinar-status.limited {
    background-color: rgba(255, 165, 0, 0.2);
    border-color: #FFA500;
    color: #FFA500;
}

/* Signup Form Styles */
.signup-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.signup-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-intro p {
    color: rgba(0, 255, 0, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.webinar-signup-form {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    padding: 2rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.webinar-submit {
    background-color: #00FF00;
    color: #000000;
    border: 2px solid #00FF00;
}

.webinar-submit:hover {
    background-color: transparent;
    color: #00FF00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* Upsell Section Styles */
.upsell-container {
    max-width: 1000px;
    margin: 0 auto;
}

.upsell-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.premium-badge {
    background-color: #00FF00;
    color: #000000;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.upsell-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.upsell-subtitle {
    color: #00FF00;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00FF00;
}

.upsell-text {
    color: rgba(0, 255, 0, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-category {
    color: #00FF00;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 3px #00FF00;
}

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

.feature-list li {
    color: rgba(0, 255, 0, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-list li:before {
    content: ">";
    color: #00FF00;
    position: absolute;
    left: 0;
}

/* Pricing Card */
.pricing-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 2px solid #00FF00;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.pricing-card.premium {
    border-color: #00FF00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.pricing-title {
    color: #00FF00;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00FF00;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.currency {
    color: #00FF00;
    font-size: 1.2rem;
}

.price {
    color: #00FF00;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px #00FF00;
}

.period {
    color: rgba(0, 255, 0, 0.8);
    font-size: 1rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    color: rgba(0, 255, 0, 0.9);
    text-align: left;
}

.upsell-button {
    width: 100%;
    background-color: #00FF00;
    color: #000000;
    border: 2px solid #00FF00;
    padding: 1rem 2rem;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.upsell-button:hover {
    background-color: transparent;
    color: #00FF00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
    transform: scale(1.02);
}

.money-back {
    color: rgba(0, 255, 0, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-content {
        margin-top: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .search-bar {
        flex-direction: column;
        align-items: center;
    }
    
    .search-btn {
        width: fit-content;
    }
    
    /* Contact section tablet responsive styles */
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Contact section responsive fixes */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
        margin: 0;
    }
    
    .contact-cta {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* About Page Styles */
.mission-content {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    color: rgba(0, 255, 0, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.highlight-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transform: translateY(-3px);
}

.highlight-title {
    color: #00FF00;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00FF00;
}

.highlight-text {
    color: rgba(0, 255, 0, 0.8);
    line-height: 1.6;
}

/* Team Profiles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.team-member.human {
    border-color: #00FF00;
}

.team-member.ai {
    border-color: #00FF00;
    border-style: dashed;
}

.member-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    width: 80px;
    height: 80px;
    border: 2px solid #00FF00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    background-color: rgba(0, 255, 0, 0.1);
    overflow: hidden;
    position: relative;
}

/* Emoji icon styling */
.image-placeholder.emoji-icon {
    font-size: 2rem;
}

.member-emoji-icon {
    color: #00FF00;
    filter: grayscale(100%) brightness(0) invert(1);
    text-shadow: 0 0 5px #00FF00;
}

/* Image icon styling */
.image-placeholder.image-icon {
    padding: 0;
    background-color: transparent;
}

.member-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(0.8) contrast(1.2);
    transition: all 0.3s ease;
}

.member-profile-image:hover {
    filter: brightness(1) contrast(1.3);
    transform: scale(1.05);
}

/* Fallback styling for broken images */
.member-profile-image:error {
    display: none;
}

.image-placeholder.image-icon::after {
    content: "👤";
    font-size: 2rem;
    color: #00FF00;
    filter: grayscale(100%) brightness(0) invert(1);
    display: none;
}

.image-placeholder.image-icon:has(.member-profile-image:error)::after {
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-name {
    color: #00FF00;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px #00FF00;
    text-align: center;
}

.member-role {
    color: rgba(0, 255, 0, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-style: italic;
}

.member-bio {
    color: rgba(0, 255, 0, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00FF00;
    padding: 0.3rem 0.8rem;
    border: 1px solid #00FF00;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.contact-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00FF00;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

.contact-card:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(0) invert(1);
}

.contact-method {
    color: #00FF00;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 5px #00FF00;
    word-wrap: break-word;
}

.contact-details {
    color: #00FF00;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-note {
    color: rgba(0, 255, 0, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Contact CTA */
.contact-cta {
    background-color: rgba(0, 255, 0, 0.05);
    border: 2px solid #00FF00;
    padding: 2rem 1.5rem;
    text-align: center;
    margin-top: 3rem;
    overflow: hidden;
    word-wrap: break-word;
}

.cta-title {
    color: #00FF00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px #00FF00;
    word-wrap: break-word;
}

.cta-text {
    color: rgba(0, 255, 0, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
}

.cta-button.primary {
    background-color: #00FF00;
    color: #000000;
}

.cta-button.secondary {
    background-color: transparent;
    color: #00FF00;
}