:root {
    /* Primary Colors */
    --primary-color: #d89a62; /* Warm tan/orange (buttons, highlights) */
    --secondary-color: #f5ede4; /* Light beige/cream (backgrounds) */
    --text-color: #2e2e2e; /* Dark brown/black */
    --text-light-color: #666; /* Lighter text */
    --footer-bg-color: #4b3621; /* Dark brown for footer */
    --white-color: #ffffff; /* White */
    /* Additional Colors */
    --hover-color: #c87f48; /* Darker shade of orange for hover */
    --border-color: #ded2c1; /* Border color for subtle lines */
}


html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.navbar {
    background-color: var(--white-color);
    border-bottom: 1px solid var(--border-color);
}

.navbar a {
    color: var(--text-color);
    padding: 10px;
}

.navbar a:hover {
    color: var(--primary-color);
}


body {
    margin-bottom: 60px;
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
    margin: 0;
    line-height: 1.6;
}
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

button, .btn {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-secondary {
    background-color: var(--footer-bg-color) !important;
    color: var(--white-color) !important;
}


button:hover, .btn:hover {
    background-color: var(--hover-color);
}

section {
    background-color: var(--secondary-color);
    padding: 40px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

#secOne{
    background-color: var(--footer-bg-color);
    color: var(--white-color)
}

#secTwo{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.lead{
    color: black;
}

.hero-section {
    background-image: url('/images/psychology-future.jpg');
    background-size: cover;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-position: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section .btn {
    font-size: 1.25rem;
    padding: 10px 20px;
}

.bg-light h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.bg-dark {
    background-color: #333;
}

footer a {
    color: var(--primary-color) !important;
}

footer a:hover {
    color: var(--hover-color) !important;
}

footer {
    background-color: var(--footer-bg-color) !important;
    color: var(--white-color) !important;
    text-align: center !important;
    padding: 20px !important;
    position: relative;
    bottom: 0;
    margin-top: 30px;
}


.testimonial:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

form{
    margin: 10%;
    margin-top: 2%;
}

.form-button{
    margin-top: 15px;
}
.container-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
}

.testimonials, .blog-posts, .team-members {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-section{
    background-color: var(--primary-color);
}

.testimonial, .blog-post, .team-member {
    flex: 1 1 calc(30% - 20px);
    background: #f8f9fa;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .testimonial p, .blog-post p, .team-member p {
        margin: 10px 0;
    }

    .blog-post img, .team-member img {
        max-width: 100%;
        border-radius: 8px;
    }

.form-group {
    margin-bottom: 15px;
}
/* Headings */

.how-it-works {
    background-color: #f7f9fc;
    padding: 50px 20px;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 10%;
}

.how-it-works .section-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.how-it-works .intro-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.how-it-works .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.how-it-works .step {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    min-width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.how-it-works .step:hover {
    transform: translateY(-5px);
}

.how-it-works .step-icon {
    font-size: 40px;
    color: #4caf50;
    margin-bottom: 15px;
}

.how-it-works .step-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.how-it-works .step-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.how-it-works .step-description ul {
    text-align: left;
    margin-top: 10px;
    padding-left: 20px;
}

.how-it-works .step-description ul li {
    margin-bottom: 5px;
}

.how-it-works .important-note {
    margin-top: 40px;
    font-size: 16px;
    color: #d9534f;
    text-align: center;
}
.about-me-section {
    padding: 60px 0;
    background-color: var(--secondary-color); /* Light beige */
    color: var(--text-color);
    margin: 5%;
}

.about-title {
    font-size: 2.5rem;
    color: var(--primary-color); /* Tan/Orange color */
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light-color);
}

ul {
    padding-left: 20px;
    color: var(--text-color);
}


.img-fluid {
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
