/* TrackPeripheral - Two-column split layout */
/* Colors: Primary #059669, Background #ECFDF5, Accent #047857, Text #1F2937 */
/* Typography: Heading - Montserrat 700, Body - Lato 400 */

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

html, body {
    height: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #1F2937;
    background-color: #ECFDF5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* Header */
header {
    padding: 32px 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #059669;
}

/* Main Content - Two Column Split */
main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 48px 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 64px;
}

.content-left {
    flex: 0 0 60%;
}

.content-right {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: #059669;
    margin-bottom: 24px;
    line-height: 1.2;
}

main p {
    font-size: 18px;
    line-height: 1.7;
    color: #1F2937;
}

/* Decorative Element */
.decorative-element {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 24px;
    opacity: 0.15;
}

/* Footer */
footer {
    padding: 32px 0;
    border-top: 1px solid #D1FAE5;
    background-color: #ECFDF5;
}

footer .container {
    text-align: center;
}

footer nav {
    margin-bottom: 16px;
}

footer nav a {
    font-size: 14px;
    color: #047857;
    text-decoration: none;
    margin: 0 12px;
}

footer nav a:hover {
    text-decoration: underline;
}

footer p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}

/* Legal Pages Styling */
.legal-page {
    padding: 48px 0;
}

.legal-page .container {
    max-width: 750px;
}

.legal-page h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #059669;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.legal-page h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #047857;
    margin-top: 32px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style-type: disc;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page .back-link {
    display: inline-block;
    margin-top: 32px;
    color: #059669;
    text-decoration: none;
}

.legal-page .back-link:hover {
    text-decoration: underline;
}
