/*
    Norwegian Blue: #00205B
    Norwegian Red:  #BA0C2F
*/

html, body {
    font-family: 'Roboto', sans-serif; /* Use Roboto font for better readability */
    margin: 0;
    background: #00205B; /* Norwegian Blue */
    color: #FFFFFF; /* White text for contrast */
    scroll-behavior: smooth;
}

section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

body a {
    text-decoration: none;
    color: aliceblue; /* Default color for links */
}

body a:hover {
    color: white;
    text-decoration: none; /* Ensure no underline on hover */
}

/* bullet points styles */
body li {
    color: #d3d3d3;
    list-style-type: disc;
    margin-bottom: 1em; /* Add more space between list items */
    line-height: 1.6; /* Better line height for list items */
    padding-left: 0.5em; /* Add some padding from the left */
}

/* Benefits Grid Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #BA0C2F;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-item h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item h3 i {
    color: #BA0C2F;
    font-size: 1.2em;
}

.benefit-item p {
    color: #d3d3d3;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-item h3 {
        font-size: 1.2em;
    }
}

/* New HERO Section */
.hero {
    background-image: linear-gradient(rgba(0, 32, 91, 0.25), rgba(186, 12, 47, 0.75)), url('/images/4x4-hero.webp');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

.hero-logo {
    height: 80px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: #BA0C2F;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #00205B;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Hero Features */
.features-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    color: #00205B;
}

.features-hero h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 3em;
    color: #BA0C2F;
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.feature-item p {
    color: #555;
}

@media (max-width: 768px) {
    .features-hero h2 {
        font-size: 2em;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Image (Old) */
.hero-image {
    background-image: url('/images/4x4-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0; /* Adjust padding as needed */
}

header {
    background: linear-gradient(45deg, #00205B, #BA0C2F); /* Norwegian Blue to Red gradient */
    padding: 0;
    color: #FFFFFF;
    text-align: left; /* Adjust text alignment */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1200px; /* Same as container max-width */
    margin: auto;
}

.header-logo {
    margin-right: 20px; /* Space between logo and text */
    margin-left: 10px; /* Space between logo and edge of the screen */
}

.header-title h1 {
    font-size: 32px; /* Adjust font size for better readability */
    margin: 0;
}

.header-title p {
    font-size: 20px; /* Adjust font size for better readability */
    margin: 5px 0 0 0;
}

@media (max-width: 768px) {
    .header-title h1 {
        font-size: 26px; /* Adjust font size for better readability */
        margin: 0;
    }
    
    .header-title p {
        font-size: 18px; /* Adjust font size for better readability */
        margin: 5px 0 0 0;
    }
}

nav {
    background: #BA0C2F; /* Norwegian Red */
    color: #FFFFFF;
    text-align: center;
    padding: 20px 0;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    padding: 10px 10px; /* Add padding for better hover effect */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

nav a:hover {
    background-color: #FFFFFF; /* White background on hover */
    color: #BA0C2F; /* Norwegian Red text color on hover */
    border-radius: 5px; /* Optional: rounded corners for better look */
}

/* Ensure container padding is consistent */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0 20px;
}

.container a {
    color: aliceblue;
}

.container a:hover {
    color: white;
    text-decoration: none; /* Ensure no underline on hover */
}

/* Adjust heading margins for better spacing */
h2 {
    font-size: 1.75em;
    margin-top: 1em; /* Reduce top margin for less space above */
    margin-bottom: 0.5em; /* Reduce bottom margin for less space below */
    line-height: 1.5; /* Adjust line-height for better readability */
}

/* Adjust heading margins for better spacing */
h3 {
    font-size: 1.5em;
    margin-top: 1em; /* Reduce top margin for less space above */
    margin-bottom: 0.5em; /* Reduce bottom margin for less space below */
    line-height: 1.5; /* Adjust line-height for better readability */
}

/* Adjust paragraph margins for better spacing */
p {
    color: lightgrey;
    margin-top: 2em; /* Add some space above paragraphs */
    margin-bottom: 2em; /* Reduce bottom margin for less space below */
    line-height: 1.75; /* Adjust line-height for better readability */
}

/* Remove extra space after last child in container */
.container p:last-child {
    margin-bottom: 40px; /* Removes extra space below the last paragraph */
}

/* Remove extra margin from all div elements within the container */
.container > div {
    margin-top: 0;
    margin-bottom: 0;
}

/* Further adjust the spacing around the button if needed */
.center-btn {
    margin-top: 2em; /* Adjust top margin as needed */
    margin-bottom: 2em; /* Adjust bottom margin as needed */
}

.btn {
    padding: 15px 30px;
    background-color: #BA0C2F; /* Norwegian Red */
    background-image: linear-gradient(45deg, #BA0C2F, #D62C1A);
    color: #FFFFFF;
    border: none;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    background-image: linear-gradient(45deg, #D62C1A, #BA0C2F);
    transform: scale(1.05);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

footer a {
    text-decoration: none;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: lightgrey;
    margin: 0 5px;
}

.social-links a:hover {
    color: white;
}

/* Additional styles, if you want to use the blue color from the logo as an accent */
.accent {
    color: #3F88C5; /* Blue accent color, taken from the logo */
}

/* Button Styles */
.btn {
    background-color: #BA0C2F; /* Red accent color from the logo for high visibility */
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    margin-top: 15px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    display: inline-block; /* Allows for text-align center in parent to work on button */
}

.btn:hover {
    background-color: #D62C1A; /* Slightly darker shade of red for hover effect */
}

.btn:active {
    background-color: #D62C1A;
    transform: translateY(2px);
}

/* Centering button */
.center-btn {
    text-align: center; /* Centers the inline-block button */
    margin-top: auto; /* Pushes button to the bottom */
}

/* Additional styles for the buttons container */
.center-btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Adjust the styles for the download buttons */
.download-btn {
    height: 50px; /* Adjusted size */
    border: 2px solid #FFFFFF; /* Add a border around the buttons */
    border-radius: 10px; /* Rounded corners */
    padding: 5px 20px; /* Add more padding inside the border */
    margin-top: 15px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    width: 250px; /* Set a fixed width for the buttons */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect for the buttons */
.download-btn:hover {
    border-color: #BA0C2F; /* Change border color on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
}

.share-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Optional: add some space above the buttons */
    margin-bottom: 20px; /* Optional: add some space below the buttons */
}

.share-buttons a {
    margin: 0 5px; /* Optional: add some space between buttons */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .center-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* Add a border to the screenshot container */
.screenshot-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Add a border to the screenshots */
.screenshot {
    border: 2px solid #FFD700; /* Golden border for a nice visual touch */
    border-radius: 5px; /* Slightly rounded corners */
    max-width: 100%;
    height: auto;
}

/* Ensure the container adjusts nicely on wider screens */
@media (min-width: 769px) {
    .screenshot-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .screenshot-container img {
        max-width: 45%; /* Allow two images per row on larger screens */
        margin: 10px; /* Add space between images */
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .screenshot-container img {
        max-width: 100%; /* Full width for images on smaller screens */
        margin-bottom: 20px; /* Add space below each image */
    }
}

/* Indie Projects Section Styling */
.indie-projects {
    width: 100%;
    margin: 20px 0;
}

.project {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.project:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
    transform: translateY(-5px); /* Slightly lift the project on hover */
}

.project-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px; /* Rounded corners for logos */
    margin-right: 20px; /* Space between logo and project info */
}

.project-info {
    flex: 1; /* Allow project info to take up remaining space */
}

.project-title {
    font-size: 1.25em;
    font-weight: bold;
    color: #FFFFFF; /* White color for text */
    text-decoration: none; /* No underline */
    display: block;
}

.project-description {
    margin-top: 5px;
    color: #FFFFFF; /* White color for description */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project {
        align-items: flex-start;
    }

    .project-logo {
        margin-bottom: 10px;
    }
}

/* Container for Columns */
.container.columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Column Styles */
.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures button is pushed to the bottom */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container.columns {
        flex-direction: column;
    }

    .center-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* Popup Background */
.popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Grey background with opacity */
    backdrop-filter: blur(5px); /* Blur effect */
}

/* Popup Content */
.popup-content {
    background-color: #ffffff; /* White background for popup */
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
}

.popup-content h2 {
    color: #00205B; /* Norwegian Blue for heading */
}

.popup-content p {
    color: #00205B; /* Norwegian Blue for text */
}

.close-btn {
    color: #BA0C2F; /* Norwegian Red for close button */
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: #D62C1A; /* Slightly darker red on hover */
    cursor: pointer;
}

/* Additional button styling */
.popup .btn {
    padding: 15px 30px;
    background-color: #BA0C2F; /* Norwegian Red */
    background-image: linear-gradient(45deg, #BA0C2F, #D62C1A);
    color: #FFFFFF;
    border: none;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.popup .btn:hover {
    background-image: linear-gradient(45deg, #D62C1A, #BA0C2F);
    transform: scale(1.05);
}

/* FAQ Group Styles */
.faq-group {
    margin-bottom: 30px;
}

.faq-group h3 {
    font-size: 1.75em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-icon {
    margin-right: 10px;
}

/* FAQ Item Styles */
.faq-item {
    background: #30446a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.faq-item h4 {
    font-size: 1.25em;
    margin-top: 0;
    color: #FFFFFF;
}

.faq-item p {
    color: lightgrey;
    margin-bottom: 0;
}

/* Expert Links Section Styling */
.expert-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.expert-links li {
    margin-bottom: 15px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.expert-links li i {
    color: #BA0C2F; /* Icon color: Norwegian Red */
    margin-right: 15px; /* Spacing between icon and text */
    font-size: 1.2em;
}

.expert-links a {
    color: #ffffff; /* Link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.expert-links a:hover {
    color: #FFD700; /* Hover color: Golden for visual impact */
}

/* Flex container for list items */
ul.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.icon-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Space between each item */
}

/* Icon styles */
ul.icon-list li i {
    margin-right: 15px; /* Adjust spacing between icon and text */
    color: #BA0C2F; /* Norwegian Red */
    min-width: 30px; /* Ensures icons have the same width */
    text-align: center; /* Center the icon in the space */
}

/* Text styles */
ul.icon-list li a {
    color: #fff;
    text-decoration: none;
}

ul.icon-list li a:hover {
    color: #D62C1A; /* Slightly darker red on hover */
}

/* CSS for content tiles in Articles */
.articles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.article-item {
    background: #30446a;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.article-item a {
    text-decoration: none;
    color: inherit; /* Inherit color from the parent */
    display: block; /* Make the link block level */
}

.article-item a:hover {
    text-decoration: none; /* Ensure no underline on hover */
}

.article-item h3 {
    margin-top: 0;
    font-size: 1.25em;
    color: #FFFFFF;
}

.article-item p {
    color: lightgrey;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .article-item {
        flex: 1 1 100%;
    }
}

/* How it works Section Styling */
.how-it-works {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    color: #00205B;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #BA0C2F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon i {
    font-size: 2em;
    color: #ffffff;
}

.step h3 {
    color: #00205B;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.step p {
    color: #555;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .how-it-works h2 {
        font-size: 2em;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }
}

/* CSS for content tiles in Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-item {
    background: #30446a;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-item h4 {
    margin-top: 0;
    font-size: 1.25em;
    color: #FFFFFF;
}

.testimonial-item p {
    color: lightgrey;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonial-item {
        flex: 1 1 100%;
    }
}

/* Responsive Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000; /* Optional: black background for loading */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.infographic-container img {
    border-radius: 10px; /* This will create the rounded corners */
    max-width: 100%; /* Ensures the image is responsive */
    height: auto; /* Maintains the aspect ratio */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow for better emphasis */
    display: block; /* Removes any extra space below the image */
    margin: 20px 0; /* Optional: adds vertical spacing around the image */
}

/* Table of Contents Styles */
.table-of-contents {
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px 15px 35px;
    margin: 80px 0 30px 0;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table-of-contents h2 {
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3em;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin: 6px 0;
    padding: 0;
}

.table-of-contents a {
    color: #d3d3d3;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 4px 0;
    font-size: 0.9em;
    line-height: 1.3;
}

.table-of-contents a:hover {
    color: #FFFFFF;
    text-decoration: none;
}

/* FAQ Section Styles */
.faq-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.faq-section h3 {
    color: #BA0C2F;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.3em;
    border-bottom: 2px solid rgba(186, 12, 47, 0.3);
    padding-bottom: 5px;
}

.faq-section h3:first-child {
    margin-top: 0;
}

.faq-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* User Stories Enhancement */
.user-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.user-story {
    background: rgba(186, 12, 47, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #BA0C2F;
}

.user-story h4 {
    color: #BA0C2F;
    margin-top: 0;
    margin-bottom: 15px;
}

.user-story p {
    margin: 0;
    line-height: 1.6;
}

/* Enhanced Blockquote Styles */
blockquote {
    background: rgba(186, 12, 47, 0.1);
    border-left: 4px solid #BA0C2F;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 5px;
}

blockquote::before {
    content: '"';
    font-size: 3em;
    color: #BA0C2F;
    line-height: 0.1em;
    margin-right: 0.1em;
    vertical-align: -0.4em;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .table-of-contents {
        padding: 12px 15px;
        margin: 20px 0;
        border-radius: 6px;
    }
    
    .table-of-contents h2 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .table-of-contents li {
        margin: 5px 0;
    }
    
    .table-of-contents a {
        padding: 3px 0;
        font-size: 0.85em;
    }
    
    .faq-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .faq-section h3 {
        font-size: 1.2em;
    }
    
    .user-stories {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .user-story {
        padding: 15px;
    }
}