/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

header {
    background: url('images/bb.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    color: #fff;
    background: #ff4081;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
    background: #e91e63;
    transform: scale(1.05);
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.link {
    color: #ff4081;
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

footer {
    background: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 0.9em;
    margin-top: 10px;
}

