body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f5f5f5;
}

header {
  background: #1d3557;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

section {
  padding: 30px;
  text-align: center;
}

section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#buy-button {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

#buy-button:hover {
  background-color: #d62828;
}

.phase {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 20px auto;
  padding: 15px;
  max-width: 600px;
  text-align: left;
}

.icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-size: cover;
  margin: 10px;
}

.icon.telegram {
  background-image: url('telegram-icon.png');
}

.icon.twitter {
  background-image: url('twitter-icon.png');
}

footer {
  background: #1d3557;
  color: white;
  padding: 15px 0;
  text-align: center;
}

/* Scroll Reveal Hidden and Visible States */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Effects for 'Why Choose Us' Items */
#why-choose-us ul li {
    cursor: pointer;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}

/* Floating Animation for Icons */
.icon {
    transition: transform 0.3s ease;
}


/* General Section Styles */
section {
    padding: 60px 20px;
    color: #333;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Section Colors */
#home {
    background: linear-gradient(to bottom, #f5b042, white);
    color: #000;
}
#about {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
#roadmap {
    background: #f0f4c3;
    color: #333;
}
#why-choose-us {
    background: #e1f5fe;
    color: #333;
}
#contact {
    background: linear-gradient(to bottom, #d1c4e9, white);
    color: #333;
}

/* Roadmap Section */
#roadmap .phase {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #ddd;
}

/* Why Choose Us Section */
#why-choose-us ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#why-choose-us ul li {
    flex: 1 1 calc(50% - 20px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
#why-choose-us ul li:hover {
    transform: translateY(-10px);
}

/* Contact Section Icons */
#contact .icon {
    font-size: 40px;
    margin: 10px;
    border-radius: 50%;
    padding: 20px;
    color: white;
    background: #4caf50;
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-size: 18.56px;
    text-decoration: none;
}
#contact .icon:hover {
    transform: scale(1.2);
    background: #388e3c;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}