/* Hero Section */
.hero {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero .subheading {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Services Grid */
.services-grid {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    color: #4a6bff;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Why Choose Us */
.why-choose {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.reasons-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason {
    text-align: center;
    padding: 2rem;
}

.reason-icon {
    font-size: 2.5rem;
    color: #4a6bff;
    margin-bottom: 1.5rem;
}

.reason h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* Comparison Table */
.comparison {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

th, td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #4a6bff;
    color: white;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}

.fa-check {
    color: #28a745;
}

.fa-times {
    color: #dc3545;
}

.comparison-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.client-info {
    text-align: right;
}

.client-name {
    font-weight: bold;
}

.client-role {
    color: #666;
    font-size: 0.9rem;
}

/* Call to Action */
.cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #4a6bff 0%, #2541b2 100%);
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: white;
    color: #2541b2;
}

.btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: #4a6bff;
    border: 2px solid #4a6bff;
}

.btn-outline:hover {
    background-color: #4a6bff;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subheading {
        font-size: 1.2rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .grid-container, .reasons-container, .testimonial-container {
        grid-template-columns: 1fr;
    }
}