/* Products page specific styles */
.products-page {
    padding-top: 90px;
}

.product-hero {
    background-color: #133364;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.product-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.product-details {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-card:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-info {
    flex: 1;
}

.product-info h2 {
    color: #133364;
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-info p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #444;
}

.features li::before {
    content: "•";
    color: #133364;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -3px;
}

/* Active state for current page in navigation */
.nav-links a.active {
    color: #133364;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 1080px) {
    .product-card {
        flex-direction: column !important;
        gap: 30px;
    }

    .product-image {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.2rem;
    }

    .product-hero p {
        font-size: 1.1rem;
    }

    .product-info h2 {
        font-size: 1.8rem;
    }

    .product-card {
        padding: 20px;
        margin-bottom: 40px;
    }
}

.sub-features {
    margin-top: 20px;
}

.sub-section {
    margin-bottom: 20px;
}

.sub-section h3 {
    color: #133364;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.other-products {
    background-color: #f8f9fa;
    padding: 60px 20px;
    margin-top: 40px;
}

.other-products .content-wrapper {
    max-width: 1030px;
    margin: 0 auto;
    text-align: center;
}

.other-products h2 {
    color: #133364;
    font-size: 2rem;
    margin-bottom: 20px;
}

.other-products p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sub-features {
        margin-top: 15px;
    }

    .sub-section {
        margin-bottom: 15px;
    }

    .other-products {
        padding: 40px 20px;
    }

    .other-products h2 {
        font-size: 1.8rem;
    }

    .other-products p {
        font-size: 1rem;
    }
} 