/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #414141;
    overflow-x: hidden;
}

/* Main container - full width and height */
.container {
    min-height: 100vh;
    width: 100%;
    background-color: #EBE0CC;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

/* Mobile top bar */
.left-section {
    display: block;
    width: 100%;
    background-color: #333333;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Full width content section */
.right-section {
    width: 100%;
    max-width: 1200px;
    background-color: #EBE0CC;
    padding: 80px 20px 40px 20px;
    margin-top: 60px;
}

.content-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

/* Header section */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    height: 60px;
    width: auto;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #414141;
    text-transform: uppercase;
    letter-spacing: 0%;
    line-height: 14px;
    text-align: center;
}

/* Content sections */
.content-section {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2F4F4F;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #414141;
    margin-bottom: 25px;
}

.section-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #414141;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 20px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Belief items styling */
.belief-item {
    margin-bottom: 25px;
}

.belief-item p {
    margin-bottom: 0;
}

.belief-item strong {
    font-weight: 700;
    color: #414141;
    display: block;
    margin-bottom: 5px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .container {
        padding: 0;
    }
    
    .right-section {
        padding: 80px 20px 40px 20px;
        margin-top: 60px;
    }
    
    .content-wrapper {
        max-width: 700px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .right-section {
        padding: 80px 20px 40px 20px;
        margin-top: 60px;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-content {
        font-size: 15px;
    }
    
    .logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0;
    }
    
    .right-section {
        padding: 80px 15px 40px 15px;
        margin-top: 60px;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-content {
        font-size: 14px;
    }
    
    .logo {
        height: 45px;
    }
}
