/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Section Navigation */
.section-nav {
    flex: 0 0 150px;
    width: 150px;
    display: flex;
    align-items: center;
}

@media (max-width: 1320px) {
    .section-nav {
        flex: 0 0 100px;
        width: 100px;
    }
}

.section-nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 0;
    border: none;
    background: transparent;
    width: 100%;
}

.section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-nav-item {
    color: rgba(255, 255, 255, 0.50);
    font-family: 'Sumana', serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: left;
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid transparent;
}

.section-nav-item.active {
    color: #FFF;
    border: 1px solid #FFF;
}

.section-nav-item:hover {
    color: rgba(255, 255, 255, 0.80);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

/* Sections */
section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

@media (min-width: 1440px) {
    section {
        height: 750px;
        padding: 80px 0;
    }

    section .container {
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
}

@media (max-width: 1439px) {
    section {
        height: 52.08vw;
        padding: 5.56vw 0;
    }

    section .container {
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}
