body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Styling for the colored block around the Why Bunk section */
.colored-block {
    background-color: #f0f4ff; /* Light blue background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

p.lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #555;
}

/* Button Styling */
.cta-button {
    background-color: #5b7fff; /* Soft blue for buttons */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    width: 260px;
    display: block;
    margin: 15px auto; /* Centering and spacing between buttons */
    text-align: center;
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15); /* Stylish shadow for buttons */
}

.cta-button:hover {
    background-color: #4169e1; /* Darker shade on hover */
    transform: translateY(-5px); /* Hover lift effect */
}

/* Phone container */
.phone-container {
    position: relative;
    width: 300px; /* Adjust this to match your phone image size */
    height: 600px; /* Adjust this to match your phone image size */
    background: url("../images/phone.png") no-repeat center center;
    background-size: contain;
}

/* Content inside the phone */
.phone-content {
    position: absolute;
    top: 100px; /* Adjust this based on where you want the content */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
}

.phone-content h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

/* Button styling inside the phone */
.phone-content .cta-button {
    background-color: #5b7fff;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    width: 200px;
    display: block;
    margin: 10px auto;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15); /* Stylish shadow for buttons */
}

.phone-content .cta-button:hover {
    background-color: #4169e1;
    transform: translateY(-5px); /* Hover lift effect */
}

/* Footer styling */
footer {
    padding: 20px 0;
    color: #777;
    font-size: 0.9rem;
}
/* Raised effect on search bar */
.search-bar {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: box-shadow 0.3s ease;
}

.search-bar:focus {
    outline: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* This creates a raised shadow effect */
    border-color: #3f51b5; /* Indigo color to match your theme */
}

/* Dark blue card on the left */
.dark-blue-card-left {
    background-color: #0d47a1; /* Dark blue color */
    padding: 20px;
    border-radius: 12px;
    position: relative;
    color: white; /* Text color inside the dark blue card */
}

/* Light blue square inside the dark blue card */
.light-blue-square {
    background-color: #f0f4ff; /* Light blue color */
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

