/* Custom styles for Syspeace.com */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo-header {
    padding: 40px 0;
    background-color: white;
}

.logo {
    max-height: 200px;
    height: auto;
    width: auto;
    max-width: 100%;
}

.main-navigation {
    background-color: #e9ecef;
    padding: 15px 0;
    border-top: 1px solid #dee2e6;
    position: relative;
}

.main-navigation .container {
    position: relative;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    align-items: center;
    gap: 12px;
}

.navbar-toggler-text {
    color: #0066cc;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 4px;
    background-color: #0066cc;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 7px 0;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 4px;
    background-color: #0066cc;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.navbar-toggler-icon::before {
    top: -11px;
}

.navbar-toggler-icon::after {
    top: 11px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    text-decoration: none;
    color: #0066cc;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

.nav-list a:hover {
    color: #004499;
    background-color: rgba(0, 102, 204, 0.1);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}

.dropdown-menu a.active {
    background-color: #e3f2fd;
    color: #0066cc;
    font-weight: 600;
}

.btn-buy {
    background-color: #ff6600 !important;
    color: white !important;
    font-weight: bold !important;
}

.btn-buy:hover {
    background-color: #e55a00 !important;
    color: white !important;
}

.btn-trial {
    background-color: #ff6600 !important;
    color: white !important;
    font-weight: bold !important;
}

.btn-trial:hover {
    background-color: #e55a00 !important;
    color: white !important;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .logo {
        max-height: 140px;
    }
    
    .logo-header {
        padding: 25px 0;
    }
    
    .navbar-toggler {
        display: flex;
    }
    
    .navbar-toggler-text {
        display: inline;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #e9ecef;
        border-top: 1px solid #dee2e6;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 0;
        padding: 0;
    }
    
    .nav-list.show {
        display: flex;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #dee2e6;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }
    
    .btn-buy,
    .btn-trial {
        margin: 0;
        text-align: center;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .support-section {
        text-align: center;
        margin-top: 2rem;
    }
}

.sub-navigation {
    background-color: #f1f3f4;
    padding: 10px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.sub-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 25px;
}

.sub-nav-list li {
    margin: 0;
}

.sub-nav-list a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 0.95em;
    padding: 6px 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.sub-nav-list a:hover {
    color: #0066cc;
    background-color: rgba(0, 102, 204, 0.1);
}

.sub-nav-list a.active {
    color: #0066cc;
    background-color: rgba(0, 102, 204, 0.15);
    font-weight: 500;
}

.download-library {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.download-library h3 {
    color: #333;
    margin-bottom: 15px;
}

.coming-soon {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

.download-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.download-section h2 {
    color: #0066cc;
    margin-bottom: 15px;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 10px;
}

.download-section h3 {
    color: #333;
    margin: 25px 0 15px 0;
}

.download-table {
    margin: 20px 0;
}

.download-item {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
}

.download-item h4 {
    margin: 0 0 10px 0;
}

.download-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.download-link:hover {
    color: #004499;
    text-decoration: underline;
}

.file-details {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
    font-family: monospace;
    font-size: 0.9em;
}

.file-details p {
    margin: 0;
    line-height: 1.4;
}

.info-link {
    color: #0066cc;
    text-decoration: none;
}

.info-link:hover {
    color: #004499;
    text-decoration: underline;
}

.main-content {
    padding-top: 40px;
}

.main-content h2 {
    color: #333;
    margin-bottom: 20px;
}

.main-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.main-content a {
    color: #0066cc;
    text-decoration: none;
}

.main-content a:hover {
    color: #004499;
    text-decoration: underline;
}

.support-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.download-section-cta {
    margin-top: 30px;
    padding: 20px;
    background-color: #e8f4fd;
    border: 1px solid #0066cc;
    border-radius: 8px;
    text-align: center;
}

.download-button {
    display: inline-block;
    background-color: #0066cc;
    color: white !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #004499;
    color: white !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.support-button {
    display: inline-block;
    background-color: #ff6600;
    color: white !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.support-button:hover {
    background-color: #e55a00;
    color: white !important;
    text-decoration: none;
}

.btn-buy.active,
.btn-trial.active {
    background-color: #cc5200 !important;
}

.redirect-notice {
    background-color: #f8f9fa;
    border: 2px solid #0066cc;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.redirect-notice h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.license-portal-button {
    display: inline-block;
    background-color: #0066cc;
    color: white !important;
    text-decoration: none !important;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1em;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.license-portal-button:hover {
    background-color: #004499;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

.portal-info {
    margin-top: 20px;
    font-weight: 600;
    color: #333;
}

.feature-list {
    text-align: left;
    max-width: 400px;
    margin: 15px auto 0;
    padding-left: 0;
    display: inline-block;
}

.feature-list li {
    list-style: none;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Installation Guide Styles */
.installation-guide {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #0066cc;
}

.installation-guide h3 {
    color: #0066cc;
    margin-bottom: 20px;
}

.installation-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.installation-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 15px 0 15px 50px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.installation-steps li:last-child {
    border-bottom: none;
}

.installation-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 15px;
    background: #0066cc;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.installation-guide p strong {
    color: #0066cc;
    font-size: 16px;
}

.main-content {
    flex: 1;
}

.footer {
    background-color: #333333;
    color: white;
    padding: 20px 0;
    text-align: left;
    margin-top: auto;
}

.footer .container {
    flex: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: #ccc;
    text-decoration: underline;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    margin-bottom: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Comparison table styles */
.comparison-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.comparison-section h2 {
    color: #0066cc;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-table {
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead th {
    background-color: #0066cc;
    color: white;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    padding: 1rem;
    border: none;
}

.comparison-table .feature-column {
    background-color: #0066cc !important;
    width: 40%;
    text-align: left !important;
}

.comparison-table .version-column {
    width: 30%;
}

.comparison-table .v3-col {
    background-color: #f0f8ff;
}

.comparison-table .v4-col {
    background-color: #e8f5e8;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tbody tr:hover {
    background-color: #f5f5f5;
}

.comparison-table td {
    padding: 1rem;
    vertical-align: middle;
    text-align: center;
    border-color: #dee2e6;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

/* Status icons */
.status-yes {
    color: #28a745;
    font-size: 1.2em;
    font-weight: bold;
}

.status-no {
    color: #dc3545;
    font-size: 1.2em;
    font-weight: bold;
}

.status-config {
    color: #ffc107;
    font-size: 1.2em;
    font-weight: bold;
}

.status-planned {
    color: #6c757d;
    font-size: 1.2em;
    font-weight: bold;
}

/* Feature tooltips */
.feature-tooltip {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-left: 3px solid #0066cc;
    font-size: 0.85em;
    color: #666;
    border-radius: 0 4px 4px 0;
    font-style: italic;
}

/* Download CTA section */
.download-cta {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.download-cta h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.download-cta p {
    margin-bottom: 2rem;
    color: #666;
}

.download-cta .btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
}

.download-cta .btn-primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #005aa8 0%, #0066cc 100%);
    color: white;
    padding: 60px 20px;
    margin: -20px -15px 40px -15px;
    text-align: center;
    border-radius: 0 0 8px 8px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.btn-hero {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    min-width: 180px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff6600;
    color: white !important;
    border: 2px solid #ff6600;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
    color: white !important;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: white;
    color: #005aa8 !important;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Migration Notice */
.migration-notice {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    margin-bottom: 40px;
}

.migration-notice h2 {
    color: #0066cc;
    margin-bottom: 20px;
}

.regards-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    text-align: right;
}

.regards-section p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.regards-section em {
    color: #666;
    font-size: 14px;
}

/* Product Overview */
.product-overview {
    text-align: center;
    margin: 50px 0;
}

.product-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 30px;
    background-color: #ffffff !important;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-icon {
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #0066cc;
    margin-bottom: 15px;
}

.product-card > p {
    color: #666;
    margin-bottom: 30px;
}

.platform-info {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.platform-info img {
    margin-bottom: 15px;
}

/* Product card button overrides */
.product-card .btn-learn-more,
.platform-info .btn-learn-more {
    background-color: #0066cc !important;
    color: white !important;
    border: 2px solid #0066cc !important;
    text-decoration: none !important;
}

.product-card .btn-learn-more:hover,
.platform-info .btn-learn-more:hover {
    background-color: #004499 !important;
    border-color: #004499 !important;
    color: white !important;
    text-decoration: none !important;
}

.platform-info h4 {
    color: #333;
    margin-bottom: 20px;
}

.btn-learn-more {
    display: inline-block;
    background-color: #0066cc !important;
    color: white !important;
    padding: 10px 25px;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #0066cc;
    cursor: pointer;
}

.btn-learn-more:hover {
    background-color: #004499 !important;
    border-color: #004499 !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Benefits Section */
.benefits-section {
    margin: 50px 0;
}

.benefits-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.benefit-card h4 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #005aa8 0%, #0066cc 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    margin: 50px 0;
}

.stat-highlight p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.btn-stats {
    display: inline-block;
    background-color: white;
    color: #0066cc;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-stats:hover {
    background-color: #f0f8ff;
    transform: translateY(-1px);
}

/* Action Sections */
.action-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

/* Hero button overrides for Bootstrap compatibility */
.hero-section .btn-hero.btn-primary,
.hero-buttons .btn-primary {
    background-color: #ff6600 !important;
    border-color: #ff6600 !important;
    color: white !important;
}

.hero-section .btn-hero.btn-secondary,
.hero-buttons .btn-secondary {
    background-color: transparent !important;
    border: 2px solid white !important;
    color: white !important;
}

.hero-section .btn-hero.btn-secondary:hover,
.hero-buttons .btn-secondary:hover {
    background-color: white !important;
    color: #005aa8 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-section {
        padding: 40px 15px;
        margin: -20px -15px 30px -15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .platform-info img {
        max-width: 100%;
        height: auto;
    }
}

/* Content Page Styles */
.content-section {
    max-width: 100%;
    margin: 0 auto;
}

.section-heading {
    color: #0066cc;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.alert-info {
    background-color: #e3f2fd;
    border-color: #0066cc;
    color: #0066cc;
}

.alert-info .alert-heading {
    color: #005aa8;
}

.alert-info code {
    background-color: #ffffff;
    color: #0066cc;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Brute Force Page Hero Background */
.brute-force-hero {
    background-image: linear-gradient(rgba(0, 102, 204, 0.7), rgba(0, 90, 168, 0.7)), url('images/syspeace-bg-lock.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Server IPS Page Hero Background */
.server-ips-hero {
    background-image: linear-gradient(rgba(0, 102, 204, 0.7), rgba(0, 90, 168, 0.7)), url('images/syspeace-bg-lock.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 120px;
    padding-bottom: 60px;
}

/* Server IPS Page Specific Styles */
.server-ips-hero .hero-content {
    text-align: center;
    padding: 60px 0;
}

.server-ips-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.video-section {
    margin-bottom: 60px;
}

.video-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.ips-explanation {
    margin-bottom: 60px;
}

.ips-explanation h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #333;
}

.explanation-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.explanation-item.solution-item {
    background-color: #e8f4fd;
    border-left: 4px solid #0066cc;
}

.explanation-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.explanation-icon img {
    width: 64px;
    height: 64px;
}

.explanation-text {
    flex: 1;
}

.explanation-text p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.bottom-sections {
    margin-top: 60px;
}

.next-section {
    background-color: #f0f8ff;
    border: 2px solid #0066cc;
    border-radius: 8px;
    padding: 25px;
    height: 100%;
}

.next-section h3 {
    color: #0066cc;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.next-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.next-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.server-info {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    text-align: center;
}

.server-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.server-icon {
    background-color: #0066cc;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.server-text {
    text-align: left;
}

.server-text h4 {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
}

.server-text h5 {
    font-size: 1rem;
    margin: 5px 0 0 0;
    color: #666;
    font-weight: normal;
}

.server-info p {
    color: #666;
    margin-bottom: 20px;
}

.trial-btn {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
}

.trial-btn:hover {
    background-color: #218838;
    color: white;
    text-decoration: none;
}

/* Contact Page Styles */
.simple-contact {
    text-align: center;
    max-width: 600px;
    margin: 60px auto;
    padding: 40px 20px;
}

.contact-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.contact-details {
    margin-top: 30px;
}

.email-address {
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.contact-button {
    display: inline-block;
    background-color: #0066cc;
    color: white !important;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #0066cc;
}

.contact-button:hover {
    background-color: #005aa8;
    border-color: #005aa8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.3);
    color: white !important;
    text-decoration: none;
}

/* Pricing Page Styles */
.pricing-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-bottom: 60px;
}

.pricing-main h1 {
    color: #0066cc;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-main h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.price-highlight {
    color: #ff6600;
    font-weight: 800;
    font-size: 2.2rem;
}

.volume-discount {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.pricing-cta {
    margin: 40px 0;
}

.btn-pricing {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc, #005aa8);
    color: white !important;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,102,204,0.4);
    color: white !important;
    text-decoration: none;
}

.pricing-notes {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.pricing-notes p {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pricing-faq {
    margin: 60px 0;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 0;
}

.faq-icon {
    background: #0066cc;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-weight: bold;
}

.faq-content h4 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-content p {
    margin-bottom: 0;
    line-height: 1.5;
}

.license-structure {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.license-structure h3 {
    color: #0066cc;
    margin-bottom: 20px;
}

.license-grid {
    margin-top: 30px;
}

.license-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.license-item {
    flex: 1;
    text-align: center;
    padding: 0;
}

.license-item img {
    width: 100%;
    max-width: 265px;
    height: auto;
    margin-bottom: 15px;
}

.license-item img:hover {
    transform: scale(1.05);
}

.license-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

@media (max-width: 768px) {
    .license-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .license-item {
        padding: 12px;
    }
    
    .license-item img {
        max-width: 200px;
    }
}

.pricing-included {
    margin: 60px 0;
    padding: 40px;
    background: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.85), rgba(0, 90, 168, 0.85)),
        url('images/syspeace-bg-lock.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border-radius: 12px;
}

.included-section {
    padding: 20px;
}

.payment-section {
    padding: 20px;
}

.pricing-included h3 {
    color: white;
    margin-bottom: 25px;
}

.included-list,
.payment-methods {
    list-style: none;
    padding: 0;
}

.included-list li,
.payment-methods li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.included-list li:before,
.payment-methods li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-included a {
    color: white;
    text-decoration: underline;
}

.pricing-included a:hover {
    color: #ff6600;
}

.guarantee-section {
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid #28a745;
}

.guarantee-section h3 {
    color: #28a745;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.final-cta {
    text-align: center;
    margin: 60px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
}

.final-cta h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 2rem;
}

.final-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: #0066cc;
    color: white !important;
    border: 2px solid #0066cc;
}

.cta-buttons .btn-primary:hover {
    background: #005aa8;
    border-color: #005aa8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #0066cc !important;
    border: 2px solid #0066cc;
}

.cta-buttons .btn-secondary:hover {
    background: #0066cc;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.3);
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 40px 20px;
    }
    
    .pricing-main h1 {
        font-size: 2rem;
    }
    
    .pricing-main h2 {
        font-size: 1.4rem;
    }
    
    .price-highlight {
        font-size: 1.8rem;
    }
    
    .license-structure,
    .pricing-included,
    .guarantee-section,
    .final-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ===========================
   FEATURES PAGE STYLES
   =========================== */

/* Features Hero Section */
.features-hero {
    background: linear-gradient(135deg, #0066cc 0%, #005aa8 100%);
    position: relative;
    overflow: hidden;
}

.features-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/syspeace-bg-lock.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.features-hero .container {
    position: relative;
    z-index: 2;
}

.features-hero .display-4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.features-hero .lead {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
}

.feature-highlights {
    margin: 2rem 0;
}

.feature-highlights .d-flex {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.feature-highlights .bi {
    font-size: 1.2rem;
    color: #ffffff;
}

.pricing-highlight {
    background: white !important;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 2rem;
}

/* Features Hero Section with Boxes */
.features-hero-section {
    background-color: #f8f9fa;
}

.feature-overview-box {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: white;
    border-radius: 8px;
    border: 3px solid #0066cc;
    box-shadow: 0 4px 12px rgba(0,102,204,0.2);
}

.feature-overview-box .text-warning {
    color: #ffc107 !important;
}

.feature-info-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
}

.pricing-center-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
}

.pricing-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.price-display .price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #0066cc;
}

.price-display .price-period {
    color: #666;
    font-size: 1rem;
}

.pricing-highlight h3 {
    color: #0066cc;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-display {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
}

.price-period {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

/* Features Main Content */
.features-main {
    background-color: #f8f9fa;
}

.features-section {
    margin-bottom: 4rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    color: #0066cc;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Feature Accordions */
.feature-accordion .accordion {
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-item {
    border: none;
    background: white;
}

.accordion-item:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    color: #0066cc;
    border-bottom: 1px solid #e9ecef;
}

.accordion-button:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    color: #0066cc;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230066cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 2rem;
    background: white;
    line-height: 1.7;
    color: #555;
}

.accordion-body p {
    margin-bottom: 1rem;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

/* USP Badges - Small visual indicator */
.usp-badge {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ff6600;
    border-radius: 50%;
    margin-left: 0.5rem;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Bootstrap Icons in Accordions */
.accordion-button .bi {
    font-size: 1.2rem;
    color: #0066cc;
    margin-right: 0.75rem;
}

.accordion-button:not(.collapsed) .bi {
    color: #0066cc;
}

/* Protection Coverage Section */
.protection-coverage {
    background: white;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.protection-coverage h2 {
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 2rem;
}

.protection-coverage h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.protection-list .d-flex {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.protection-list .bi-check-circle {
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Features CTA Section */
.features-cta {
    background: linear-gradient(135deg, #0066cc 0%, #005aa8 100%);
    color: white;
    border-radius: 12px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/syspeace-bg-lock.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.features-cta .container {
    position: relative;
    z-index: 2;
}

.features-cta h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-cta .lead {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.features-cta .btn {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.features-cta .btn-primary {
    background: #ff6600;
    border-color: #ff6600;
}

.features-cta .btn-primary:hover {
    background: #e55a00;
    border-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,102,0,0.4);
}

.features-cta .btn-outline-primary {
    border-color: white;
    color: white;
}

.features-cta .btn-outline-primary:hover {
    background: white;
    border-color: white;
    color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* Responsive Design for Features Page */
@media (max-width: 1200px) {
    .features-hero {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .features-hero {
        padding: 2.5rem 0;
    }
    
    .features-hero .row {
        padding: 2rem 0;
    }
    
    .pricing-highlight {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-hero {
        padding: 2rem 0;
    }
    
    .features-hero .display-4 {
        font-size: 2rem;
    }
    
    .features-hero .lead {
        font-size: 1rem;
    }
    
    .pricing-highlight {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .accordion-button .bi {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .usp-badge {
        width: 7px;
        height: 7px;
        margin-left: 0.4rem;
    }
    
    .protection-coverage {
        margin: 2rem 0;
    }
    
    .features-cta {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .features-cta .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 1rem;
    }
}

@media (max-width: 576px) {
    .features-hero {
        padding: 1.5rem 0;
    }
    
    .features-hero .display-4 {
        font-size: 1.75rem;
    }
    
    .pricing-highlight {
        padding: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .accordion-button {
        padding: 0.875rem 1rem;

/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* About Page Content Structure */
.content-page {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #0066cc;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.content-section p.lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.content-section p {
    margin-bottom: 1.2rem;
    color: #666;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,102,204,0.15);
}

.team-member h3 {
    color: #0066cc;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Approach Points */
.approach-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.approach-item:hover {
    border-color: #0066cc;
    box-shadow: 0 3px 12px rgba(0,102,204,0.1);
}

.approach-item h4 {
    color: #0066cc;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 2rem 2rem 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #0066cc;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-cta h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .content-section p.lead {
        font-size: 1.1rem;
    }
    
    .contact-cta {
        padding: 1.5rem;
    }
}
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .usp-badge {
        width: 6px;
        height: 6px;
        margin-left: 0.3rem;
        opacity: 0.8;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}
