/* --- Main Content Styles --- */

/* General Section Styling */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: #555;
    color: #fff;
    border: 2px solid #555;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #555;
    border-color: #555;
}


/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517524206127-48bbd363f3d7?q=80&w=2070');
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.hero-content .btn {
    margin-top: 30px;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    flex-direction: column;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
}

.service-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-section .about-image,
.about-section .about-content {
    flex: 1;
}

.about-section .about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-section .about-content .section-title {
    text-align: left;
}

.about-section .about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.about-section .about-content .btn {
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.cta-section .container {
    flex-direction: column;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section .container {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}