* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f4f4f4;
  color: #222;
}

/* ================= MAIN ================= */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.analysis {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  background: #fff;
  padding: 25px;
  margin-bottom: 40px;
  border: 1px solid #ddd;
}

.analysis-left img {
  width: 100%;
  border: 1px solid #ccc;
}

.analysis-right h3 {
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
}

.analysis-right h4 {
  margin: 8px 0 15px;
}

.analysis-right p {
  font-size: 14px;
  line-height: 1.6;
}

.highlight-box {
  margin-top: 20px;
  background: #0d2a57;
  color: #fff;
  padding: 15px;
}

.highlight-box h5 {
  margin-bottom: 10px;
}

.highlight-box ul {
  padding-left: 18px;
}

.highlight-box li {
  font-size: 13px;
  margin-bottom: 6px;
}

/* ================= FOOTER ================= */
.footer {
  background: #0d2a57;
  color: #fff;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-left span {
  color: #f4c400;
}

.footer-center a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.footer-right a {
  margin-left: 12px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-right a svg {
  width: 16px;
  height: 16px;
}

.footer-right a:hover {
  color: #f4c400;
  transform: scale(1.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
  
  .nav-left {
    position: fixed !important;
    top: 55px !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff !important;
    flex-direction: column !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    border-bottom: 1px solid #eee !important;
    padding: 0 !important;
    z-index: 1000 !important;
  }
  
  .nav-left.active {
    max-height: 350px !important;
    padding: 15px 20px !important;
  }
  
  .nav-links {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }
  
  .nav-links a {
    padding: 8px 0 !important;
    font-size: 14px !important;
  }
  
  .nav-links a.contact {
    margin-top: 8px !important;
    padding: 10px 18px !important;
    border: 2px solid var(--accent) !important;
    border-radius: 6px !important;
    background: transparent !important;
    color: var(--accent) !important;
    font-weight: 600 !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1.2 !important;
  }
  
  .analysis {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 420px) {
  .hamburger {
    display: flex !important;
  }
  
  .nav-left {
    position: fixed !important;
    top: 55px !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff !important;
    flex-direction: column !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    border-bottom: 1px solid #eee !important;
    padding: 0 !important;
    z-index: 1000 !important;
  }
  
  .nav-left.active {
    max-height: 300px !important;
    padding: 12px 14px !important;
  }
  
  .nav-links {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }
  
  .nav-links a {
    padding: 6px 0 !important;
    font-size: 12px !important;
  }
  
  .nav-links a.contact {
    padding: 8px 14px !important;
    border: 2px solid var(--accent) !important;
    border-radius: 6px !important;
    background: transparent !important;
    color: var(--accent) !important;
    font-weight: 600 !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1.2 !important;
    margin-top: 6px !important;
  }
  
  .analysis {
    padding: 12px;
  }

  .footer {
    padding: 15px 12px;
    font-size: 12px;
  }
}