/* Global Styles */
:root {
    --primary-color: #2e2381;
    --secondary-color: #009fe2;
    --accent-color: #ccbb73;
    --background-color: #f9f7f3;
    --dark-color: #1a1a18;
    --text-color: #1a1a18;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3 {
    margin-bottom: var(--spacing-unit);
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Responsive Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

/* Button Styles */
.button, .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover, .cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Section Styles */
section {
    padding: 4rem 2rem;
}

/* Media Queries */
@media (max-width: 576px) {
    .container {
        width: 95%;
    }
}
