/* Global Styles
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* Typography
-------------------------------------------------- */
h1, h2, h3 {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}


.scale-down {
    transform: scale(0.88); /* Adjust the scale value as needed (0.9 means 90% of the original size) */
    transform-origin: top; /* Set the origin for scaling */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

