* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-wrapper {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #e0e0e0;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 25% 10%, rgba(76, 175, 80, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 75% 75%, rgba(76, 175, 80, 0.05) 0%, transparent 20%);
    z-index: 0;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.page-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #4CAF50, transparent);
}

.page-subtitle {
    color: #aaa;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.services-container {
    position: relative;
}

.services-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(76, 175, 80, 0.5), transparent);
    z-index: 0;
}

.service-section {
    margin-bottom: 8rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-section:last-child {
    margin-bottom: 2rem;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(76, 175, 80, 0.1);
    width: 100%;
    max-width: 800px;
}

.service-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.service-tagline {
    color: #4CAF50;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-content {
    color: #e0e0e0;
    font-size: 1.05rem;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #4CAF50, transparent);
}

.service-content p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.benefits {
    background: rgba(76, 175, 80, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 3px solid #4CAF50;
    position: relative;
    overflow: hidden;
}

.benefits::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits h3 {
    color: #4CAF50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li:before {
    content: "→";
    color: #4CAF50;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.feature-list li strong {
    color: white;
    font-weight: 500;
}

.highlight {
    color: #4CAF50;
    font-weight: 500;
}

.section-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: black;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.decorative-line {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px dashed rgba(76, 175, 80, 0.2);
    z-index: 0;
}

.line-1 {
    top: 10%;
    right: 5%;
}

.line-2 {
    bottom: 20%;
    left: 5%;
}

.glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.glow-1 {
    top: 30%;
    right: 10%;
}

.glow-2 {
    bottom: 40%;
    left: 10%;
}

@media (max-width: 992px) {
    .page-title {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
    
    .services-container::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .benefits {
        padding: 1.5rem;
    }
    
    .services-container::before {
        display: none;
    }
    
    .section-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}