/* Page Styles for Beiro AI
   Additional styles for inner pages */

/* Page Header */
.page-header {
    background-color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    color: #333333;
}

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

.page-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
    font-weight: 700;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #333333;
}

.alt-bg {
    background-color: #FFFFFF;
    color: #333333;
}

/* Product Page Styles */
.product-section {
    padding: 5rem 0;
}

.product-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.product-content.reverse {
    flex-direction: row-reverse;
}

.product-info {
    flex: 1;
}

.product-image {
    flex: 1;
    text-align: center;
}

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

.product-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #008934;
}

.product-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

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

.feature-list li {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.feature-list li i {
    color: #008934;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.feature-list li h4 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.feature-list li p {
    margin: 0;
    color: #333333;
}

/* About Page Styles */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-info {
    flex: 1;
}

.about-section p {
    margin: 0 !important;
}

.about-image {
    flex: 1;
    text-align: center;
}

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

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

.value-card {
    background-color: rgba(0, 137, 52, 0.1);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    color: #333333;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 137, 52, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    color: #008934;
    font-size: 1.75rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.5rem 0 0.25rem;
    padding: 0 1.5rem;
    font-size: 1.25rem;
}

.team-role {
    color: #008934;
    font-weight: 600;
    margin: 0 0 0.75rem;
    padding: 0 1.5rem;
}

.team-bio {
    color: #333333;
    margin: 0 0 1.5rem;
    padding: 0 1.5rem;
}

.team-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #333333;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.benefits-list li i {
    color: #008934;
    margin-right: 1rem;
}

.careers-cta {
    background-color: rgba(0, 137, 52, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.careers-cta p {
    margin-bottom: 1rem;
}

/* Resources Page Styles */
.resource-section {
    padding: 5rem 0;
}

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

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

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

.resource-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 137, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.resource-icon i {
    color: #008934;
    font-size: 2rem;
}

.resource-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.resource-card p {
    color: #333333;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #008934;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.resource-link:hover {
    text-decoration: underline;
}

.resource-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #333333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.case-study-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .case-study-card {
        flex-direction: row;
        align-items: stretch;
    }
}

.case-study-image {
    flex: 1;
    min-height: 250px;
    overflow: hidden;
}

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

.case-study-content {
    flex: 2;
    padding: 2rem;
}

.case-study-industry {
    color: #008934;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-results {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: #008934;
    line-height: 1;
}

.result-label {
    font-size: 0.875rem;
    color: #333333;
    margin-top: 0.5rem;
}

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

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

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

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #333333;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.75rem;
}

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

.blog-content p {
    color: #333333;
    margin-bottom: 1.25rem;
}

.blog-link {
    color: #008934;
    font-weight: 600;
    text-decoration: none;
}

.blog-link:hover {
    text-decoration: underline;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

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

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

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

.support-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 137, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    color: #008934;
    font-size: 2rem;
}

.support-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.support-card p {
    color: #333333;
    margin-bottom: 1.5rem;
}

/* Legal Page Styles */
.legal-nav {
    background-color: #FFFFFF;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.legal-nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legal-nav-link {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.legal-nav-link:hover {
    background-color: rgba(0, 137, 52, 0.3);
    color: #008934;
}

.legal-section {
    padding: 5rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-last-updated {
    text-align: right;
    margin-bottom: 2rem;
    color: #333333;
    font-style: italic;
}

.legal-content h3 {
    color: #008934;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section p {
    margin: 0 !important;
    line-height: 1.6;
    color: #333333;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    color: #333333;
}

.legal-section + .legal-section {
    margin-top: 3rem;
}

.legal-content .legal-section {
    padding: 0;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background-color: #FFFFFF;
    color: #333333;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Button Styles */
.btn-outline {
    background-color: transparent;
    color: #008934;
    border: 2px solid #008934;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #008934;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .product-content, .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .product-content.reverse {
        flex-direction: column;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .legal-nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .case-study-results {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Active Navigation Link */
.nav-links a.active {
    color: #008934;
    font-weight: 600;
} 