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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    width: 100%;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0071bc;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}


a {
    text-decoration: none;
    color: white;
}

.container {
    width: 80%;
    margin: 0 auto;
}

h1, h2 {
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Header Styling */
header {
    background-color: #0071bc; /* Blue */
    padding: 1.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

header .logo {
    color: #fff;
    font-size: 1.8rem;
}

header nav ul {
    list-style-type: none;
    background-color: rgb(38,35,66,0.2);
    width: 20rem;
}

header nav ul li {
    display: inline-block;
    margin-left: 1rem;
    text-align: center;
    
}

header nav ul li a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #cc0000; /* Light Red */
}

/* Home Section */
#home {
    background-color: #0071bc;
    background-image: url('./mediation-header.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    padding: 4rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

#home .intro-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

#home .intro-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#catchPhrase {
 height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #e0b796;
 
}
#catchPhrase p{
   font-size: 1.2rem;
}
#catchPhrase .smallNote {
 
  font-size: 0.9rem;
}

#services {

 display: flex;
 justify-content: center;
 align-items: center;
 
}
.profile {
    display: flex;
    align-items: center;
   /* background-color: #1d2b53; */
   background-color: #0071bc;
    color: white;
    padding: 20px;
    border-radius: 10px;
}
.profile img {
    
    margin-right: 50px;
    width: 20rem;
    
    
    
}
.profile-text{
  background-color: #fbf7f4;
  color: black;
  height: 50rem;
  padding: 8rem;
  min-width: 40rem;
  padding-top: 1rem;
  overflow: auto;
  
}
.profile-text h2 {
    margin-bottom: 0;
}
.profile-text p {
    margin: 5px 0;
}
.profile-text ul {
    
    padding-left: 2rem;
}
.profile-text ul li {
    margin-bottom: 10px;
}


.btn-primary {
    background-color: #cc0000; /* Light Red */
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #990000; /* Darker Red */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white; /* Adjust background color as needed */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* For drop shadow effect */
    z-index: 1;
    
}

.dropdown-content li {
    display: block; /* Stack the options vertically */
    margin: 0;
    padding: 10px;
    white-space: nowrap; /* Prevent text wrapping */
}

.dropdown-content li a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 10px;
}

.dropdown-content li a:hover {
    background-color: #ddd; /* Change background color on hover */
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Section Styling */
section {
    padding: 4rem 0;
}

.light-section {
    background-color: #fbf7f4;
}

.form-container {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            margin: auto;
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        textarea {
            resize: vertical;
        }
        .submit-btn {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
        }
        .submit-btn:hover {
            background-color: #34495e;
        }

/* Footer Styling */
footer {
    width: 100%;
    background-color: #0071bc;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}

footer p {
    margin: 0;
}
footer h2{
  color: #fffff0;
  
}
