/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: white;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #fd921e;
    color: white;
    border: none;

}

.btn-primary:hover {
    background-color: #e78318;
}

.btn-secondary {
    background-color: #1957ff;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: #1e3a8a;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: #fd921e;
}


/* Page Header */
.page-header {
    background-color: #1e3a8a;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Overview */
.products-overview {
    padding: 80px 0;
    background-color: #f9fafb;
}

.products-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.products-image {
    flex: 1;
}

.products-image img {
    width: 100%;
    border-radius: 8px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.products-text {
    flex: 1;
}
.products-text>a {
    margin-right: 10px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.section-description {
    color: #4b5563;
    margin-bottom: 30px;
}

/* Product Modules Section */
.product-module-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

/* Module Details */
.module-detail {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.module-detail:last-child {
    border-bottom: none;
}

.module-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.module-detail-content.reverse {
    flex-direction: row-reverse;
}

.module-image {
    flex: 1;
}

.module-image img {
    width: 100%;
    border-radius: 8px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.module-text {
    flex: 1;
}

.module-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.module-description {
    color: #4b5563;
    margin-bottom: 20px;
}

/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #4b5563;
}

.features-list li:before {
    content: '✓';
    color: #fd921e;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    background-color: #1e3a8a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-column {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-column.featured {
    transform: scale(1.05);
    border: 2px solid #fd921e;
    z-index: 1;
}

.pricing-column.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-tag {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: #fd921e;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    transform: rotate(45deg);
    font-weight: bold;
    width: 150px;
    text-align: center;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.pricing-header h3 {
    margin: 0;
    font-size: 24px;
    color: #1957ff;
}

.pricing-price-custom {
    font-size: 30px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #333;
}

.pricing-price {
    font-size: 40px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #333;
}

.pricing-price span {
    font-size: 16px;
    font-weight: normal;
}

.pricing-description {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.pricing-features {
    padding: 20px 30px;
}

.pricing-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.feature-name {
    font-size: 14px;
    color: #6c757d;
}

.feature-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: right;
}

.feature-available {
    color: #28a745;
    font-size: 18px;
}

.feature-unavailable {
    color: #dc3545;
    font-size: 18px;
}

.pricing-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
}


.pricing-footer .btn-outline {
    color: #1e3a8a;
    border-color: #1e3a8a;
}

.pricing-footer .btn-outline:hover {
    background-color: #1e3a8a;
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-header {
        padding: 100px 0 50px;
    }
    .contact-info {
        display: none;
    }

    .products-content {
        flex-direction: column;
    }

    .products-image {
        margin-bottom: 40px;
    }

    .top-bar-content {
        justify-content: center;
    }

    .module-detail-content {
        flex-direction: column;
    }

    .module-detail-content.reverse {
        flex-direction: column;
    }

    .module-image {
        margin-bottom: 40px;
    }

    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-column {
        margin-bottom: 30px;
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-column.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-column.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 50px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .action-buttons {
        display: none;
    }
}