/* Custom Styles for Allure Template */

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.section-title h2 {
    color: #2ca1c3;
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title .subtitle {
    color: #666;
    font-size: 1.1em;
    margin: 0;
}

/* DDoS Protection Section - Two Column Layout */
.ddos-features-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin: 40px 0;
}

/* Left side - SVG */
.ddos-svg-container {
    width: 45%;
    flex: 0 0 45%;
    text-align: center;
}

.ddos-svg-container object,
.ddos-svg-container svg {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Right side - Features list */
.hosting-features {
    width: 55%;
    flex: 0 0 55%;
}

.hosting-features h3 {
    color: #2ca1c3;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.hosting-features h3:first-child {
    margin-top: 0;
}

.hosting-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.hosting-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #555;
}

.hosting-features li:before {
    content: "✓";
    color: #2ca1c3;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Dark mode support */
[data-theme="dark"] .section-title h2 {
    color: #4db8d4;
}

[data-theme="dark"] .section-title .subtitle {
    color: #aaa;
}

[data-theme="dark"] .hosting-features h3 {
    color: #4db8d4;
    border-bottom-color: #444;
}

[data-theme="dark"] .hosting-features li {
    color: #ccc;
}

[data-theme="dark"] .hosting-features li:before {
    color: #4db8d4;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .ddos-features-section {
        flex-direction: column;
    }
    
    .ddos-svg-container,
    .hosting-features {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .section-title h2 {
        font-size: 1.5em;
    }
}