/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfdfd;
}

header {
    background-color: #212121;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.buy-btn {
    padding: 10px 20px;
    background-color: #ff7f50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.buy-btn:hover {
    background-color: #ff4500;
}

section {
    padding: 3rem 1rem;
    text-align: center;
}

.section-img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

#home {
    background-color: #f3f3f3;
}

#about {
    background-color: #e3e8ff;
}

#roadmap {
    background-color: #dff9fb;
}

.phases .phase {
    background: rgba(0, 123, 255, 0.05);
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
}

#why-choose-us {
    background-color: #ffeaa7;
}

.reasons .reason {
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
}

#contact {
    background-color: #130f40;
    color: white;
    padding: 2rem;
}

#contact .logo {
    width: 100px;
    margin-bottom: 1rem;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons .icon img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icons .icon img:hover {
    transform: scale(1.1);
}