.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero-section .hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-section .hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-section .cta-button {
    display: inline-block;
    background: #fff;
    color: #2575fc;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.hero-section .cta-button:hover {
    background: #2575fc;
    color: #fff;
}

/* Features Section */
.features-section {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
	text-align: center;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature img {
    max-width: 80px;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
	 text-align: left;
}

.feature p {
    font-size: 1em;
    color: #666;
	 text-align: justify;
     text-justify: inter-word;
}

/* Testimonials Section */
.testimonials-section {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

blockquote {
    font-style: italic;
    color: #444;
    background: #fff;
    padding: 20px;
    border-left: 5px solid #6a11cb;
    margin: 0;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #666;
}

.cta-section {
    background: #D3D3D3; /* Grayish background */
    color: #333; /* Adjusted text color for better readability */
    text-align: center;
    padding: 15px 15px;
}

.cta-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background: #0F52BA;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.cta-section .cta-button:hover {
    background: #2575fc;
    color: #fff;
}


/* ✅ Large Desktops (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px; /* Expand content width */
        padding: 30px;
    }

    .hero-section {
        padding: 80px 40px; /* More spacious hero section */
    }

    .hero-section .hero-content h1 {
        font-size: 3em; /* Slightly larger heading */
    }

    .hero-section .hero-content p {
        font-size: 1.4em;
    }

    .features {
        gap: 30px; /* More spacing between features */
    }

    .feature {
        padding: 30px; /* Larger padding */
        font-size: 1.2em; /* Slightly larger text */
    }

    .feature h3 {
        font-size: 1.7em;
    }

    .feature p {
        font-size: 1.2em;
    }

    blockquote {
        width: 70%;
        font-size: 1.2em;
    }
}

/* ✅ Standard Laptops (1280px and below) */
@media (max-width: 1280px) {
    .container {
        padding: 20px;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .hero-section .hero-content h1 {
        font-size: 2.2em; /* Slightly smaller heading */
    }

    .hero-section .hero-content p {
        font-size: 1.1em;
    }

    .features {
        gap: 15px;
    }

    .feature {
        padding: 20px;
        font-size: 1.1em;
    }

    .feature h3 {
        font-size: 1.4em;
    }

    .feature p {
        font-size: 1em;
    }

    blockquote {
        width: 80%;
        font-size: 1.1em;
    }
}

/* ✅ Small Laptops (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
    }

    .hero-section {
        padding: 40px 15px;
    }

    blockquote {
        width: 90%;
        font-size: 1em;
    }

    .cta-section {
        padding: 15px;
    }

    .cta-section h2 {
        font-size: 1.4em;
    }

    .cta-section p {
        font-size: 1em;
    }

}

