._add-about-section {
    top:300px;
	position:relative;
    padding: 80px 20px;
    background: white;
}

._add-container {
    max-width: 1200px;
    margin: 0 auto;
}

._add-section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
	color: #4a4a4a;
}

._add-section-header h2 {
    margin: 0 0 20px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

._add-section-header p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

._add-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

._add-feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

._add-feature-card:hover {
    transform: translateY(-5px);
}

._add-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1;
}

._add-feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}

._add-feature-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    ._add-about-section {

		top: 150px;
        padding: 60px 16px;
    }

    ._add-section-header {
        margin-bottom: 40px;
    }

    ._add-section-header h2 {
        font-size: 2rem;
    }

    ._add-section-header p {
        font-size: 1rem;
    }



	
}