* {
	font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #FFF8F0;
    color: #333333;
    line-height: 1.5;
}

nav {
    background: #eb6f99;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

nav h1 {
    color: #fff;
    font-size: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}


nav ul li a:hover {
    text-decoration: underline;
	color:#5A3E36;
}

.hero {
    text-align: center;
    background: #F7DDE2;
    padding: 80px 20px;
    margin-top: 20px;
    border-radius: 15px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #9F6BB5;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #7a4d8c;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    background: #F7DDE2;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff0f5;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

button {
    background: #9F6BB5;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
}

button:hover {
    background: #7a4d8c;
}

footer {
    text-align: center;
    padding: 20px;
    background: #eb6f99;
    color: #fff;
    margin-top: 30px;
}