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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

/* Main content */
main {
    flex: 1;
    width: 100%;
    margin: 0 auto;
}

/* Content pages (About, Privacy, FAQ etc.) */
main > h1,
.content-page > h1,
#main-content > h1,
.page-title {
    text-align: center;
    color: #c74168;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    animation: fadeInUp 1s ease-out;
}

/* Content pages (About, Privacy, FAQ etc.) */
.content-page {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.content-page h1 {
    text-align: center;
    color: #c74168;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.content-page h2 {
    color: #c74168;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.content-page h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.content-page h4 {
    color: #c74168;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.content-page ul {
    list-style: disc;
    margin: 0.5rem 0 1rem 2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.content-page a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-page a:hover {
    color: #fff;
}

.content-page p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About intro */
.about-intro {
    max-width: 80%;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e5c9ff;
}

/* Founder styles */
.founders {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.founder {
    text-align: center;
}

.founder-section {
    margin: 3rem auto;
    overflow: hidden;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 80%;
}

.julie-section {
    background: linear-gradient(135deg, rgba(35, 42, 84, 0.5) 0%, rgba(42, 46, 95, 0.5) 100%);
    border-left: 4px solid #7a6bbd;
}

.satnam-section {
    background: linear-gradient(135deg, rgba(70, 30, 62, 0.5) 0%, rgba(84, 35, 68, 0.5) 100%);
    border-right: 4px solid #c74168;
}

.founder-img {
    width: 25vw; /* 20% of viewport width */
    height: calc(25vw * 5/3.5); /* Maintain 3.5/5 ratio */
    max-width: 350px;
    max-height: 500px;
    border-radius: 5%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #c74168;
    box-shadow: 0 0 15px rgba(199, 65, 104, 0.5);
}

.founder-image-container {
    text-align: center;
    flex-shrink: 0;
}

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

.founder-image-container.right {
    order: 1;
    margin-left: 30px;
}

.founder-image-container.left {
    order: 0;
    margin-right: 30px;
}

.founder-img.right,
.founder-img.left {
    margin-bottom: 10px;
}

.founder-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.founder-header h3 {
    color: #c74168;
    font-size: 1.5rem;
    margin: 0;
    margin-right: 0.5rem;
    line-height: 1;
}

.founder-social-link {
    display: flex;
    align-items: center;
}

.social-icon {
    display: block;
    margin-top: -2px;
}

.founder h3 {
    margin-top: 1rem;
    color: #c74168;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-page {
        padding: 1.5rem;
        border-radius: 0;
    }

    .founders {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .julie-section, .satnam-section {
        border-left: none;
        border-right: none;
        border-top: 4px solid #7a6bbd;
        border-bottom: 4px solid #7a6bbd;
    }
    
    .satnam-section {
        border-top: 4px solid #c74168;
        border-bottom: 4px solid #c74168;
    }
    
    .about-intro {
        max-width: 95%;
        margin: 0 auto 2rem;
    }
    
    .founder-image-container.left,
    .founder-image-container.right {
        order: 0;
        margin: 0 auto 20px;
        width: 100%;
        text-align: center;
    }
    
    .founder-img.left,
    .founder-img.right {
        margin: 0 auto;
        width: 60vw;
        height: calc(60vw * 5/3.5);
        max-width: 280px;
        max-height: 400px;
    }
    
    .founder-content {
        width: 100%;
    }
    
    .founder-header {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
}

    .toc {
        margin: 0 0 2rem 0;
        padding: 1.5rem;
        border-radius: 0;
    }

    .hero {
        margin: 2rem auto;
    }
}

@media (max-width: 480px) {
    .content-page {
        padding: 0.5rem;
    }

    .toc {
        padding: 0.5rem;
    }
    
    .founder-img.left,
    .founder-img.right {
        width: 80vw;
        height: calc(80vw * 5/3.5);
    }

    .hero {
        margin: 2rem auto;
    }
}