/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FEB89E;
}



header {
    background-color: #FEB89E;
    padding: 10px 0;
}

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

.logo {
    width: 100px;
    height: 100px;
    background-image: url("/images/Logo.jpg");
}

nav ul {
    list-style-type: none;
    display: flex;
}

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

nav ul li a {
    text-decoration: none;
    color: #333;
}

.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/balk.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;

}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    background-color: #FFF9C4;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    color: #000000;
    margin: 0;
    font-size: 1.8em;
    font-weight: bold;
}

/*Box Containers*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}


.cardContainer {
    display: grid;
    padding: 5rem;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}


.abcard {
    padding: 1rem;
    border-radius: 25px;
    background: #FFF9C4;
}

.card {
    width: calc(33% - 20px);
    border-radius: 25px;
    background: #FFF9C4;
    padding: 20px;
    margin-bottom: 20px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.cta-button {
    background-color: #FF9A8B;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.thankyou-button {
    background-color: #FFF9C4;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}