body {
    font-family: 'FedraSerifA', 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 18px;
}

.sidebar {
    width: 80px;
    height: 100vh;
    background-color: #050505;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    flex-shrink: 0;
}

.logo-container {
    padding: 0px;
    text-align: center;
}

#sidebar-logo {
    max-width: 100%;
    height: auto;
    max-height: auto;
}

.vertical-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
    padding-top: 0px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    padding: 0px;
    position: relative;
    font-family: 'Roboto', Arial, sans-serif;
    max-height: calc(100% - 40px);
    overflow: hidden;
}

.vertical-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 11%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 10px);
    background-color: #ce57c1;
}

.main-content {
    flex: 1;
    padding: 20px;
    margin-left: 100px; /* Increased gap between sidebar and content */
    max-width: calc(100% - 120px); /* Adjust max-width to account for sidebar */
    box-sizing: border-box;
}

.main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    font-weight: 500;
    color: #010544;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: #000;
}

.main-title .highlight {
    font-weight: 700;
    color: #ce57c1;
}

.article-info {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}

.author {
    font-size: 1.1em;
    font-weight: 400;
    color: #333;
    margin: 0 0 5px 0;
}

.article-stats {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    font-weight: 500;
    color: #010544;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: #ce57c1;
}

.pulled-quote {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4em;
    font-weight: 300;
    font-style: italic;
    color: #010544;
    border-left: none;
    padding: 20px 0;
    margin: 30px auto;
    max-width: 80%;
    text-align: center;
    position: relative;
}

.pulled-quote-2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4em;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    border-left: none;
    padding: 20px 0;
    margin: 30px auto;
    max-width: 80%;
    text-align: center;
    position: relative;
}

.pulled-quote::before,
.pulled-quote::after {
    margin-bottom: 20px;
    margin-top: 20px;
}

.pulled-quote p {
    margin: 0 0 10px 0;
}

.pulled-quote cite {
    font-size: 0.7em;
    font-style: normal;
    font-weight: 400;
    color: #666;
    display: block;
}
.pulled-quote-2 cite {
    font-size: 0.7em;
    font-style: normal;
    font-weight: 400;
    color: #f8f8f8;
    display: block;
}

.flip-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 220px;
    perspective: 1000px;
    margin: 20px;
    font-family: 'Roboto', sans-serif;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.flip-card-front {
    background-color: #010544;
    color: white;
}

.flip-card-back {
    background-color: #ce57c1;
    color: white;
    transform: rotateY(180deg);
}

.flip-card-front h3, .flip-card-back p {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.flip-card-front h3 {
    font-size: 2.5em;
    font-weight: 500;
}

.flip-card-back p {
    font-size: 1em;
    font-weight: 400;
}

.centered-text {
    text-align: center;
}

.instruction {
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
}

.call-to-action {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.hashtag {
    font-weight: bold;
    color: #2980b9;
}

.parallax-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.parallax-1 .parallax-bg {
    background-image: url('bigdata1.jpeg');
}

.parallax-2 .parallax-bg {
    background-image: url('bigdata2.jpeg');
}

.content {
    position: relative;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.five-s-section {
    font-size: 1.1em;
    color: #010544;
}

/* Media Queries for Responsiveness */
body {
    font-family: 'FedraSerifA', 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
}

.sidebar {
    width: 80px;
    height: 100vh;
    background-color: #050505;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    flex-shrink: 0;
}

.logo-container {
    padding: 0px;
    text-align: center;
}

#sidebar-logo {
    max-width: 100%;
    height: auto;
    max-height: auto;
}

.vertical-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
    padding-top: 0px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    padding: 0px;
    position: relative;
    font-family: 'Roboto', Arial, sans-serif;
    max-height: calc(100% - 40px);
    overflow: hidden;
}

.vertical-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 11%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 10px);
    background-color: #ce57c1;
}

.main-content {
    flex: 1;
    padding: 20px;
    margin-left: 80px; /* Match sidebar width */
    width: calc(100% - 80px); /* Full width minus sidebar */
    box-sizing: border-box;
}

.main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    font-weight: 500;
    color: #010544;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: #000;
}

.main-title .highlight {
    font-weight: 700;
    color: #ce57c1;
}

.article-info {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}

.author {
    font-size: 1.1em;
    font-weight: 400;
    color: #333;
    margin: 0 0 5px 0;
}

.article-stats {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    font-weight: 500;
    color: #010544;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: #ce57c1;
}
h3.final-subheading {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

h3.final-subheading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ce57c1;
}

.pulled-quote {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4em;
    font-weight: 300;
    font-style: italic;
    color: #010544;
    border-left: none;
    padding: 20px 0;
    margin: 30px auto;
    max-width: 80%;
    text-align: center;
    position: relative;
}

.pulled-quote-2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4em;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    border-left: none;
    padding: 20px 0;
    margin: 30px auto;
    max-width: 80%;
    text-align: center;
    position: relative;
}

.pulled-quote::before,
.pulled-quote::after {
    margin-bottom: 20px;
    margin-top: 20px;
}

.pulled-quote p {
    margin: 0 0 10px 0;
}

.pulled-quote cite {
    font-size: 0.7em;
    font-style: normal;
    font-weight: 400;
    color: #666;
    display: block;
}
.pulled-quote-2 cite {
    font-size: 0.7em;
    font-style: normal;
    font-weight: 400;
    color: #f8f8f8;
    display: block;
}

.flip-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 220px;
    perspective: 1000px;
    margin: 20px;
    font-family: 'Roboto', sans-serif;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.flip-card-front {
    background-color: #010544;
    color: white;
}

.flip-card-back {
    background-color: #ce57c1;
    color: white;
    transform: rotateY(180deg);
}

.flip-card-front h3, .flip-card-back p {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.flip-card-front h3 {
    font-size: 2.5em;
    font-weight: 500;
}

.flip-card-back p {
    font-size: 1em;
    font-weight: 400;
}

.centered-text {
    text-align: center;
}

.instruction {
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
}

.call-to-action {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.hashtag {
    font-weight: bold;
    color: #2980b9;
}

.parallax-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.parallax-1 .parallax-bg {
    background-image: url('bigdata1.jpeg');
}

.parallax-2 .parallax-bg {
    background-image: url('bigdata2.jpeg');
}

.content {
    position: relative;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.five-s-section {
    font-size: 1.1em;
    color: #010544;
}

/* Media Queries for Responsiveness */
@media screen and (min-width: 1200px) {
    .main-content {
        max-width: 100%;
    }

    .main-title {
        font-size: 3.2em;
    }

    h3 {
        font-size: 1.8em;
    }

    .pulled-quote {
        font-size: 1.6em;
        max-width: 70%;
    }

    .content {
        max-width: 100%;
    }

    .flip-cards-container {
        justify-content: space-between;
    }

    .flip-card {
        width: 30%;
        margin: 20px 0;
    }

    body {
        font-size: 20px;
    }
}

@media screen and (min-width: 1600px) {
    .main-content {
        max-width: (100%);
    }

    .main-title {
        font-size: 3.8em;
    }

    h3 {
        font-size: 2.2em;
    }

    .pulled-quote {
        font-size: 1.8em;
        max-width: 60%;
    }

    .content {
        max-width: 100%;
    }

    body {
        font-size: 22px;
    }

    .flip-card {
        width: 350px;
        height: 260px;
    }

    .flip-card-front h3 {
        font-size: 3em;
    }

    .flip-card-back p {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: 60px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        position: static;
    }

    .logo-container {
        padding: 5px;
    }

    #sidebar-logo {
        max-height: 50px;
    }

    .vertical-text-container {
        flex-direction: row;
        padding: 0 10px;
        height: auto;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 18px;
        max-height: none;
    }

    .vertical-text::after {
        display: none;
    }

    .main-content {
        margin-left: 0;
        margin-top: 60px;
        max-width: 100%;
        padding: 10px;
    }

    .main-title {
        font-size: 2em;
    }

    h3 {
        font-size: 1.3em;
    }

    .pulled-quote {
        font-size: 1.2em;
        max-width: 90%;
    }

    .flip-card {
        width: 100%;
        max-width: 300px;
    }

    .flip-card-front h3 {
        font-size: 2em;
    }
}


@media screen and (max-width: 480px) {
     .sidebar {
        height: 50px;
    }
    
    #sidebar-logo {
        max-height: 40px;
    }
    
    .vertical-text {
        font-size: 16px;
    }
    
    .main-content {
        margin-top: 50px;
        padding: 5px;
    }
    
    .main-title {
        font-size: 1.8em;
    }
    
    h3 {
        font-size: 1.2em;
    }
    
    .pulled-quote {
        font-size: 1.1em;
    }
    
    .flip-card-front h3 {
        font-size: 1.8em;
    }
}

