/* Base Styles */
:root {
    --primary-color: #0d2b4e;
    --secondary-color: #0d2b4e;
    --accent-color: #ff8c00;
    --text-color: #333333;
    --light-text: #ffffff;
    --light-bg: #f5f5f5;
    --dark-bg: #1a1a1a;
    --border-color: #dddddd;
    --seneca-blue: #0d2b4e;
    --seneca-dark-blue: #0d2b4e;
    --seneca-orange: #ff8c00;
    --header-bg: #0d2b4e;
    --footer-bg: #0d2b4e;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: var(--seneca-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-text);
    border: none;
}

.btn-primary:hover {
    background-color: #ff9d1a;
    color: var(--light-text);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--seneca-dark-blue);
    border-color: var(--seneca-dark-blue);
}

/* Header Styles */
.main-header {
    padding: 15px 0;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

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

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

.logo img {
    height: 35px;
    width: auto;
    background: transparent;
}

.logo h1 {
    display: none;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--light-text);
    font-weight: 400;
    padding: 8px 0;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

nav a:hover {
    color: var(--light-text);
    opacity: 0.9;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--light-text);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a.btn-primary, nav a.btn-secondary {
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    font-weight: 400;
}

nav a.btn-primary {
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
}

nav a.btn-primary:hover {
    background-color: #ff9d1a;
    border-color: #ff9d1a;
    color: var(--light-text);
}

nav a.btn-secondary {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

nav a.btn-secondary:hover {
    background-color: var(--seneca-dark-blue);
    border-color: var(--seneca-dark-blue);
    color: var(--light-text);
}

nav a.btn-primary::after, nav a.btn-secondary::after {
    display: none;
}

nav a.login-portal {
    color: var(--seneca-orange);
}

nav a.login-portal:hover {
    color: #ff9d1a;
}

nav a.login-portal::after {
    background-color: var(--seneca-orange);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(13, 43, 78, 0.5), rgba(13, 43, 78, 0.5)), url('../images/WVDrilling-scaled.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 160px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero .btn {
    min-width: 140px;
}

/* Section Styles */
section {
    padding: 60px 0;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.section-header h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services-overview {
    padding: 60px 0;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card-content {
    padding: 25px;
    text-align: left;
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
}

.service-icon i {
    background-color: rgba(255, 140, 0, 0.1);
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    background-color: rgba(255, 140, 0, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

.service-card h4 {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
}

.why-choose-us .section-header {
    margin-bottom: 30px;
}

.why-choose-us p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: #ffffff;
    padding: 25px;
    text-align: center;
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Case Studies Section */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-study-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-study-image {
    height: 200px;
    background-color: var(--light-bg);
    background-size: cover;
    background-position: center;
}

.case-study-content {
    padding: 30px;
}

.case-study-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--light-bg);
    background-size: cover;
    background-position: center;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-member p {
    color: var(--primary-color);
    font-weight: 500;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

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

/* Footer Styles */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--light-text);
    padding: 25px 0 15px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.footer-left {
    flex: 0 0 25%;
    margin-right: 20px;
}

.footer-right {
    flex: 1;
    display: flex;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 35px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--accent-color);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul li {
    margin-bottom: 6px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.footer-column a {
    color: var(--light-text);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    opacity: 0.8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Customer Section */
.testimonials {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.customer-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.customer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.customer-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.testimonial-quote {
    max-width: 700px;
    margin: 50px auto;
    text-align: center;
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

/* Feature List */
.feature-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Get Started Section */
.get-started {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 80px 0;
}

.get-started .section-header {
    max-width: 800px;
    margin: 0 auto;
}

.get-started .section-header h2 {
    color: var(--light-text);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.get-started .section-header p {
    color: var(--light-text);
    opacity: 0.9;
    margin-bottom: 25px;
}

.get-started .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.get-started .btn-primary:hover {
    background-color: var(--seneca-dark-blue);
    border-color: var(--seneca-dark-blue);
}

/* About Preview Section */
.about-preview {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-preview .section-header {
    margin-bottom: 30px;
}

.about-preview .about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-preview .about-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-preview .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-preview .about-image:hover img {
    transform: scale(1.02);
}

.about-preview p {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-preview .feature-list {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.about-preview .feature {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-preview .section-cta {
    margin-top: 30px;
}

.about-preview .btn-primary {
    min-width: 140px;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.mobile-menu-toggle.active i:before {
    content: "\f00d"; /* Font Awesome close icon */
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .main-header .container {
        position: relative;
    }
    
    nav ul {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
    overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 100;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active ul {
        max-height: 500px;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav ul li a::after {
        display: none;
    }
    
    nav ul li a.btn-primary, nav ul li a.btn-secondary {
        margin: 15px 20px;
        text-align: center;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .customer-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-left {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-right {
        flex: 0 0 100%;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .customer-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-list {
        gap: 10px;
    }
    
    .feature {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .product-content {
        flex-direction: column;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 30px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .customer-logos {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .customer-logo img {
        max-height: 50px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-icon i {
        padding: 15px;
    }
    
    .benefit-card i {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .get-started {
        padding: 60px 0;
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
    }
    
    .get-started .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .get-started .section-header p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .get-started-cta {
        margin-top: 20px;
    }
    
    .get-started .btn-primary {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.footer-column ul li i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

/* Product Pages (SenecaGIS, Courthouse, WellTrack) */
.product-overview {
    padding: 60px 0;
    background-color: #ffffff;
}

.product-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.product-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-features {
    flex: 1;
    min-width: 300px;
}

.product-features h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.product-features ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-features li {
    display: flex;
    gap: 15px;
}

.product-features li i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.product-features li h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 600;
}

.product-features li p {
    color: #666;
    font-size: 0.95rem;
}

.product-benefits {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

.testimonial-highlight {
    padding: 60px 0;
    background-color: #ffffff;
}

/* News Page */
.news-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.news-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.news-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.news-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

.newsletter-signup {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
}

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

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

/* Support Page */
.support-options {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.support-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.support-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.support-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.support-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.support-card .btn:hover {
    background-color: #ff9d1a;
}

.training-resources {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.resources-tabs {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

.tab-content {
    display: none;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resource-list li {
    display: flex;
    gap: 15px;
}

.resource-list li i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.resource-list li h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 600;
}

.resource-list li p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.download-link,
.watch-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.faqs {
    padding: 60px 0;
    background-color: #ffffff;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.contact-support {
    padding: 60px 0;
    background-color: var(--light-bg);
}

/* Override for get-started section to ensure text is visible */
.get-started .section-header h2 {
    color: var(--light-text);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.get-started .section-header p {
    color: var(--light-text);
    opacity: 0.9;
    margin-bottom: 25px;
}

.get-started-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.get-started-cta .btn {
    min-width: 140px;
}

@media (max-width: 768px) {
    .get-started-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .get-started-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Privacy Policy Page */
.privacy-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.last-updated {
    margin-bottom: 30px;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.policy-section h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 25px 0 15px;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
    padding-left: 15px;
}

.policy-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.contact-info {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 20px 15px;
    }
    
    .policy-section {
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}

.no-news-message {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    grid-column: 1 / -1;
}

.no-news-message h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.no-news-message p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
} 