/* Container */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white); /* The content sheet is clean white */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Header */
.legal-header {
    padding: 60px 50px 40px;
    border-bottom: 1px solid var(--border-color);
}

.brand-name {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.main-title {
    color: var(--text-heading);
    font-size: 2.2rem;
    font-weight: 800;
}

.date-stamp {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* Content Blocks */
.legal-content {
    padding: 20px 50px;
}

.content-block {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.content-block:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 12px;
    font-weight: 700;
}

/* List Style */
.clean-list {
    list-style: none;
}

.clean-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--tertiary);
    border-radius: 50%;
}

/* Subtle Accent Block */
.highlight-accent {
    background-color: #f8f9ff;
    margin-left: -50px;
    margin-right: -50px;
    padding: 40px 50px;
    border-left: 4px solid var(--primary);
}

/* Contact Grid */
.contact-grid {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}













/* footer */

/* Section 10 Footer */
.main-footer {
  background-color: #f8f9fa;
  padding: 60px 5% 20px;
  border-top: 1px solid #eee;
  color: #444;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-address img{
    width: 180px;
}

.footer-address h4 {
  color: var(--primary); /* #301BF3 */
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.footer-address p {
  line-height: 1.6;
  font-size: 1rem;
  color: #555;
}

.contact-link {
  color: var(--secondary); /* #9128C3 */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  transition: 0.3s;
}

.contact-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--tertiary); /* #12DDF0 */
  transition: width 0.3s;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-link:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #888;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    align-items: center;
  }
}






/* Rotate the dashed ring */
.ring-rotate {
  transform-origin: center;
  animation: rotateClockwise 20s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating nodes animation */
.node {
  animation: floatNodes 5s ease-in-out infinite;
}

.node-whatsapp { animation-delay: 0s; }
.node-sms { animation-delay: 1s; }
.node-rcs { animation-delay: 2s; }
.node-ai { animation-delay: 3s; }

@keyframes floatNodes {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Connection line pulsing effect */
.line-pulse {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: lineDraw 3s ease-in-out infinite;
}

@keyframes lineDraw {
  0% { stroke-dashoffset: 100; opacity: 0.1; }
  50% { stroke-dashoffset: 0; opacity: 0.5; }
  100% { stroke-dashoffset: -100; opacity: 0.1; }
}

/* Hub scaling animation */
.hub-group {
  transform-origin: center;
  animation: hubScale 4s ease-in-out infinite;
}

@keyframes hubScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}