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

/* Page Container */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}
.redirect-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4c6ef5, #15aabf);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(21, 170, 191, 0.4);
  position: relative;
  
  overflow: hidden;
}

.redirect-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.5s ease-in-out;
}

.redirect-button:hover::before {
  left: 130%;
}

.redirect-button:hover {
  box-shadow: 0 6px 16px rgba(21, 170, 191, 0.6);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .redirect-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

.container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 110px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Blog Section Title */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Blog Article Card */
.blog-card {
    margin-bottom: 40px;
    border-left: 5px solid #007acc;
    padding-left: 20px;
}

/* Blog Title */
.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    cursor: pointer;
    color: #007acc;
    transition: color 0.3s;
}

.blog-title:hover {
    color: #005f99;
}

/* Blog Content */
.blog-content {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 10px;
}

.blog-content.active {
    display: block;
    opacity: 1;
    max-height: 10000px;
}

/* Blog Image */
.blog-image {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin: 20px 0;
    display: block;
}

/* Lists */
ul {
    margin: 15px 0 25px 20px;
}

li {
    margin-bottom: 10px;
}

.footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 40px 20px 20px;
  margin-top: 50px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.footer-logo h2 {
  color: #00bcd4;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-contact h3,
.footer-social h3 {
  margin-bottom: 10px;
  color: #00bcd4;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 10px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #bbb;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}
