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

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
    background-color: #5C003D;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.sidebar {
    background-color: #5C003D;
    flex: 0 0 15%;
    min-width: 0;
}

.sidebar-left {
    /* Left sidebar */
}

.sidebar-right {
    /* Right sidebar */
}

.content {
    background-color: #FFFFFF;
    flex: 1 1 70%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    min-width: 0;
}

.content-inner {
    text-align: center;
    max-width: 600px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}

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

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.heading {
    font-family: 'Source Serif 4', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 3.5rem;
    color: #5C003D;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    width: 100%;
}

.body-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    width: 100%;
    margin-top: auto;
    padding-bottom: 2rem;
}

.email-link {
    color: #00BCD4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #0097A7;
    text-decoration: underline;
}

.email-link:active {
    color: #00838F;
}

/* Tablet styles */
@media screen and (max-width: 1024px) {
    .sidebar {
        flex: 0 0 10%;
    }
    
    .heading {
        font-size: 2.75rem;
    }
    
    .body-text {
        font-size: 1.1rem;
    }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    body {
        overflow-y: auto;
    }
    
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        display: none;
    }
    
    .content {
        flex: 1 1 100%;
        padding: 2rem 1.5rem;
        min-height: 100vh;
    }
    
    .content-inner {
        padding: 1rem 0;
        justify-content: flex-start;
    }
    
    .body-text {
        margin-top: 2rem;
        padding-bottom: 0;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .heading {
        font-size: 2.25rem;
        margin-bottom: 0.625rem;
    }
    
    .body-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

/* Small mobile styles */
@media screen and (max-width: 480px) {
    .content {
        padding: 1.5rem 1rem;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    .heading {
        font-size: 1.875rem;
        margin-bottom: 0.5rem;
    }
    
    .body-text {
        font-size: 0.95rem;
    }
}

