/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

a {
    text-decoration: none;
    color: #337ab7;
}

a:hover {
    color: #23527c;
}

/* Header Styles */
header {
    background-color: #1a1d23;
    padding: 1em;
    text-align: center;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-right: 20px;
}

header nav a {
    color: #fff;
}

/* Main Section Styles */
.main {
    padding: 2em;
}

.main .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.main h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Hero Styles */
.hero {
    background-image: linear-gradient(to bottom, #1a1d23, #4567b7);
    background-size: 100% 100%;
    background-position: 0% 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 500px;
    /* Optional: Adds a max width to the paragraph */
}

.hero button {
    background-color: #34c759;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

body section {
    max-width: 80%;
    margin: 0 auto;
}

body section.hero {
    max-width: 100%;
}

/* Features Styles */
.features {
    padding: 2em;
}

.features h2 {
    padding-bottom: 1em;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.feature {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Testimonials Styles */
.testimonials {
    padding: 2em;
    background-color: #f7f7f7;
}

.testimonials h2 {
    text-align: center;
}

.testimonial-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    width: calc(30% - 20px);
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial span {
    font-size: 16px;
    color: #666;
}

/* About Us Styles */
.about-us {
    padding: 2em;
}

.about-us .container {
    margin: 0 auto;
    text-align: center;
}

.about-us h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
}

.about-us p:last-child {
    margin-bottom: 40px;
}

/* Footer Styles */
footer {
    background-color: #1a1d23;
    padding: 1em;
    text-align: center;
    color: #fff;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.copyright {
    font-size: 14px;
    color: #666;
}