* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    color: #2c2c2c;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url('https://images.unsplash.com/photo-1600334129128-685c5582fd35') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-button {
    background: #e8c37d;
    color: #2c2c2c;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.about {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.features div {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.booksy {
    background: #2c2c2c;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.booksy h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.booksy-card {
    display: inline-block;
    margin-top: 30px;
    background: #e8c37d;
    color: #2c2c2c;
    padding: 20px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
}

.booksy-card small {
    display: block;
    margin-top: 5px;
    font-weight: normal;
}

footer {
    padding: 20px;
    text-align: center;
    background: #1f1f1f;
    color: #aaa;
}
