/* SEO Sections Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 300;
}

/* Proxy Types Section */
.proxy-types-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.proxy-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.proxy-type {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.proxy-type:hover {
    transform: translateY(-5px);
}

.proxy-type h3 {
    color: #6c2db3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.proxy-type p {
    color: #666;
    margin-bottom: 1rem;
}

.proxy-type ul {
    padding-left: 1.2rem;
}

.proxy-type li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Use Cases Section */
.use-cases-section {
    padding: 3rem 0;
    background-color: #fff;
}

.use-cases {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.use-case {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.use-case h3 {
    color: #6c2db3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.use-case p {
    color: #666;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.feature h3 {
    color: #6c2db3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: #fff;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.faq-item h3 {
    color: #6c2db3;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
}

/* Datacenter Section */
.datacenter-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.datacenter-uses {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.datacenter-uses div {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.datacenter-uses h3 {
    color: #6c2db3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.datacenter-uses p {
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .proxy-type, .use-case, .feature {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
}
