/* Web Sunucusu Nedir? Bölümü - Modern ve Kurumsal Stil */
.webserver-what-section {
    background: linear-gradient(135deg, #0f0a18 0%, #1a1429 100%);
    padding: 90px 0 60px 0;
    text-align: center;
    color: #fff;
}

.webserver-what-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 18px;
}

.webserver-what-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #bdb8e9;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.webserver-what-desc {
    color: #e0e0e0;
    font-size: 1.18rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.webserver-what-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
    color: #bdb8e9;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
}

.webserver-what-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
}

.webserver-what-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #6c63ff 60%, #bdb8e9 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px #6c63ff44;
}

@media (max-width: 700px) {
    .webserver-what-section {
        padding: 48px 0 24px 0;
    }
    .webserver-what-title {
        font-size: 1.5rem;
    }
    .webserver-what-desc {
        font-size: 1rem;
    }
    .webserver-what-list {
        font-size: 0.98rem;
    }
}

/* Hizmet Verdiğimiz Servisler Bölümü */
.services-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #fff;
    position: relative;
    z-index: 10;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Neler Yapıyoruz Bölümü */
.what-we-do-section {
    background: linear-gradient(135deg, #1a1429 0%, #0f0a18 100%);
    padding: 80px 0;
    color: #fff;
}

.what-we-do-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #bdb8e9;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-we-do-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.what-we-do-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.what-we-do-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.2);
    border-radius: 50%;
    color: #6c63ff;
}

.what-we-do-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #bdb8e9;
}

.what-we-do-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

@media (max-width: 768px) {
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .what-we-do-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
    .what-we-do-title {
        font-size: 1.5rem;
    }
    .what-we-do-item {
        padding: 20px;
    }
}

/* İhtiyacınıza Uygun Kurulum Bölümü */
.custom-solution-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.custom-solution-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.custom-solution-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-solution-text {
    text-align: left;
    color: #555;
    line-height: 1.8;
}

.custom-solution-text p {
    margin-bottom: 20px;
}

.custom-solution-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.custom-solution-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.custom-solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6c63ff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .custom-solution-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .custom-solution-title {
        font-size: 1.5rem;
    }
    .custom-solution-text {
        font-size: 0.95rem;
    }
}

.custom-solution-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6c63ff 0%, #4a45b1 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
    color: #fff;
}

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
} 