/* Whole webpage */

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

/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color:white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Nunito', sans-serif;
}

.nav-logo img {
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 1.7rem;
    font-family: 'Nunito', sans-serif;
}

/* Home Page */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0 0 0;
}

.hero-img {
    width: 250px;
    margin-bottom: 10px;
    border-radius: 20px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.7rem;
    font-style: italic;
    color: #333;
}

/* Features */

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 60px 60px 60px;
}

.card {
    border-radius: 20px;
    padding: 30px;
    min-height: 250px;
    width: 600px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
}

.card-purple {
    background-color: #e8d5f5;
}

.card-orange {
    background-color: #fde8cc;
}

.card-yellow {
    background-color: #fdf5c0;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1.9rem;
    color:#333;
}

/* CTA (Call To Action) Section */

.cta {
    background-color: #c8f0d8;
    text-align: center;
    padding: 30px 40px;
    border-radius: 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.cta-subtitle {
    font-size: 1.9rem;
    color: #333;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #2c2c2c;
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.3rem;
    display: inline-block;
}

.cta-button:hover {
    background-color: #444;
}

.cta-wrapper {
    background: #f5f2e8;
    padding: 0 600px 50px 600px;
    margin-bottom: 0;
}

body {
    margin: 0;
    padding: 0;
    background: #f5f2e8;
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

/* Info Page */

.info-hero {
    text-align: center;
    padding: 40px 20px 20px 20px;
}

.info-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-subtitle {
    font-size: 2rem;
    font-style: italic;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 80px 40px 80px;
}

.info-card {
    border-radius: 20px;
    padding: 30px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    height: 400px;
}

.info-purple { background-color: #e8d5f5; }
.info-orange { background-color: #fde8cc; }
.info-yellow { background-color: #fdf5c0; }
.info-green  { background-color: #c8f0d8; }

.info-icon {
    background-color: white;
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-card-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card-text {
    font-size: 2rem;
    color: #333;
}

/* About Page */

.about-hero {
    text-align: center;
    padding: 50px 20px 30px 20px;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 1.4rem;
    color: #333;
    font-style: italic;
}

.team-section {
    padding: 20px 60px 50px 60px;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

.team-grid {
    display: flex;
    gap:15px;
    justify-content: center;
}

.team-card {
    background-color: #e8d5f5;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    width: 220px;
    min-width: 220px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-icon {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 60px;
    text-align: center;
}

.values-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.value-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.value-text {
    font-size: 1.7rem;
    color: #333;
}

.values-wrapper {
    background-color: #fde8cc;
    border-radius: 20px;
    margin: 0 120px 40px 120px;
    padding: 100px 60px 100px 60px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.support-hero {
    text-align: center;
    padding: 40px 20px 20px 20px;
}

.support-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.support-subtitle {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
}

.form-wrapper {
    background-color: #fdf5c0;
    border-radius: 20px;
    margin: 0 300px 40px 300px;
    padding: 40px 50px 60px 50px;
    border: 1.5px solid rgba(0,0,0,0.1);
}

.form-heading {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.form-input {
    padding: 15px 20px;
    border-radius: 30px;
    border: none;
    background-color: #fffdf5;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    outline: none;
}

.form-textarea {
    padding: 15px 20px;
    border-radius: 20px;
    border: none;
    background-color: #f5f2e8;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    height: 300px;
    resize: none;
    outline: none;
}

.form-button {
    background-color: #c9a8f0;
    color: #333;
    padding: 15px;
    border-radius: 30px;
    border: none;
    font-size: 1.1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.form-button:hover {
    background-color: #b48de0;
}