/* Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Section Backgrounds */
.bg-primary {
    background: rgb(35, 36, 57);
    background: radial-gradient(
        circle,
        rgba(35, 36, 57, 1) 3%,
        rgba(67, 69, 112, 1) 60%
    );
}

.bg-secondary {
    background: rgb(67, 69, 112);
    background: radial-gradient(
        circle,
        rgba(67, 69, 112, 1) 3%,
        rgba(35, 36, 57, 1) 60%
    );
}

/* Common Elements */
.section-padding {
    padding: 80px 5%;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(
        90deg,
        rgb(118, 167, 63) 0%,
        rgb(51, 143, 118) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .grid {
        margin: 0;
        width: 100%;
    }
    
    .section-padding {
        padding: 60px 15px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}
