/* Main styles - optimized and minified */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.top-bar {
    padding: 12px 0;
    width: 100%;
border-color:#29306B;
border-width: 2px;
border-bottom-style: solid;
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* Main Content */
main {
    flex: 1;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Common section width */
.options, .about-section, footer {
    width: 100%;
    max-width: 1030px;
}

.options-section {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.option {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.option a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.option-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.logo-container {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
}

.logo-img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.banner-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.option:hover .banner-image {
    transform: scale(1.05);
}

.option h2 {
    font-size: 1.8rem;
    color: #29306B;
    margin: 15px 0 10px;
    padding: 0 20px;
}

.description {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 0 20px;
    flex-grow: 1;
}

.cta-button {
    display: inline-block;
    background-color: #6BB630;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background-color: #5c962d;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

/* About Section */
.about-section {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    color: #29306B;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #6BB630;
    border-radius: 3px;
}

.about-section p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.product-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}

.product-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    transition: transform 0.3s ease;
}

.product-icon:hover {
    transform: translateY(-5px);
}

.product-icon i {
    font-size: 2.5rem;
    color: #29306B;
    margin-bottom: 15px;
    background-color: rgba(52, 152, 219, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-icon:hover i {
    background-color: #29306B;
    color: white;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.product-icon span {
    font-size: 1.1rem;
    color: #29306B;
    font-weight: 500;
    text-align: center;
}

/* Footer */
.footer-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

footer {
    background-color: #fff;
    color: #7f8c8d;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 1030px;
    position: relative;
    overflow: hidden;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
}

.footer-contact, .footer-copyright {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #29306B;
    position: relative;
    display: inline-block;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #6BB630;
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #6BB630;
    text-decoration: underline;
}

.footer-contact i {
    margin-right: 10px;
    color: #6BB630;
}

.footer-copyright {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .tagline {
        margin: 10px 0 0 0;
        padding-left: 0;
        border-left: none;
    }
    
    .options {
        flex-direction: column;
        align-items: center;
    }
    
    .option {
        width: 100%;
    }
    
    .banner-image-container {
        height: 200px;
    }
    
    .product-icons {
        gap: 30px;
    }
    
    .product-icon {
        width: 150px;
    }
    
    .product-icon i {
        font-size: 2rem;
        width: 80px;
        height: 80px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-copyright {
        justify-content: center;
        margin-top: 30px;
    }
    
    .about-section {
        padding: 30px 20px;
    }
    
    /* Mobile footer fixes */
    .footer-wrapper {
        padding: 0 20px;
    }
    
    footer {
        width: 100%;
        padding: 30px 15px;
    }
}
