/* Global styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

/* Adaptive Typography for Headings */
.site-name {
    font-size: 1.5rem; /* Default for mobile */
}

.hero-headline {
    font-size: 2.25rem; /* Mobile */
}

.section-heading {
    font-size: 1.875rem; /* Mobile */
}

@media (min-width: 768px) {
    .site-name {
        font-size: 1.8rem; /* Tablet */
    }
    .hero-headline {
        font-size: 3.5rem; /* Tablet */
    }
    .section-heading {
        font-size: 2.5rem; /* Tablet */
    }
}

@media (min-width: 1024px) {
    .site-name {
        font-size: 2rem; /* Desktop */
    }
    .hero-headline {
        font-size: 4.5rem; /* Desktop */
    }
    .section-heading {
        font-size: 3rem; /* Desktop */
    }
}

/* Hero Section Specific Styles */
#hero {
    background: linear-gradient(135deg, #1e3a8a, #6d28d9);
    min-height: 100vh;
}

#hero-shape {
    transition: d 1s ease-in-out;
}

.hero-cta-button {
    text-decoration: none;
}

/* About Section Timeline */
.timeline-line {
    height: calc(100% - 20px);
    top: 10px;
}

.timeline-dot {
    margin-top: -20px;
}

/* Services Section */
.service-card {
    display: flex;
    flex-direction: column;
}

.service-card > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Team Section Quote Marks */
.team-quote-mark {
    background-image: linear-gradient(45deg, #bfdbfe, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

/* Stats Section Circle Progress */
.stat-circle-progress {
    transition: stroke-dashoffset 1.5s ease-out;
}

/* How It Works Section SVG Paths */
.how-it-works-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: visible;
}

.how-it-works-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1s ease-out;
}

/* Footer Section */
.footer-email-link {
    word-break: break-all;
}

.footer-cta-button {
    text-decoration: none;
}

/* General link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Button specific styles to remove underline */
button, .hero-cta-button, .footer-cta-button {
    text-decoration: none;
}
/*
 * New stock styles for common HTML elements within .complianceCoreSlot
 * These styles provide moderate font sizes, standard margins, and line heights.
 */

/* Base padding for the compliance core slot container */
.complianceCoreSlot {
  padding: 40px 20px; /* Top/Bottom: 40px, Left/Right: 20px */
  /* Add any other base styles for the slot here if needed, e.g., max-width, background */
}

/* Headings */
.complianceCoreSlot h1 {
  font-size: 1.8rem; /* Moderately sized h1 */
  line-height: 1.2;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: bold; /* Default bold for prominence */
}

.complianceCoreSlot h2 {
  font-size: 1.5rem; /* Moderately sized h2 */
  line-height: 1.25;
  margin-top: 1.3rem;
  margin-bottom: 0.7rem;
  font-weight: bold;
}

.complianceCoreSlot h3 {
  font-size: 1.3rem; /* Moderately sized h3 */
  line-height: 1.3;
  margin-top: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: bold;
}

.complianceCoreSlot h4 {
  font-size: 1.15rem; /* Moderately sized h4 */
  line-height: 1.4;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600; /* Slightly less bold than h1-h3 */
}

.complianceCoreSlot h5 {
  font-size: 1rem; /* Moderately sized h5, often same as body text but with different weight */
  line-height: 1.5;
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
  font-weight: 500; /* Medium weight */
}

/* Paragraphs */
.complianceCoreSlot p {
  font-size: 1rem; /* Base font size for paragraphs */
  line-height: 1.6; /* Improved readability for body text */
  margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered Lists */
.complianceCoreSlot ul {
  margin-top: 1rem; /* Space above the list */
  margin-bottom: 1rem; /* Space below the list */
  padding-left: 25px; /* Standard indentation for list items */
  list-style: disc; /* Default disc style */
}

/* List Items */
.complianceCoreSlot li {
  margin-bottom: 0.5rem; /* Space between list items */
  line-height: 1.5; /* Good line height for list content */
}
