 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            font-size: 18px;
            line-height: 1.9;
            color: #3a3a3a;
            background: #fff;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: #1c1c1c;
            height: 180px;
            display: flex;
            align-items: center;
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            flex: 0 0 auto;
        }

        .logo img {
            width: 263px;
            height: 129px;
        }

        .beginners-section {
            flex: 0 0 auto;
            text-align: right;
            margin-left: auto;
        }

        .beginners-link {
            color: #ffffff;
            font-size: 20px;
            font-weight: 600;
            font-style: italic;
            text-decoration: none;
        }

        .underline-img {
            margin-top: -10px;
        }

        .underline-img img {
            width: 207px;
        }

       	/* Navigation */
        .nav-section {
            background: #383838;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0;
        }

        .nav-container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 60px;
            position: relative;
        }

        .main-nav {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: center;
            margin: 0;
        }

        .main-nav li {
            margin: 0;
        }

        .main-nav a {
            color: #ffffff;
            text-decoration: none;
            padding: 8px 15px;
            display: block;
            font-size: 19px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .main-nav a:hover {
            color: #ffffff;
            background-color: #0e80ab;
            text-decoration: none;
        }

        .mobile-menu-toggle {
            display: none;
            background: #383838;
            color: #ffffff;
            border: none;
            font-size: 24px;
            padding: 8px;
            cursor: pointer;
            margin-left: auto;
        }

        /* Lead Section */
      .lead-section {
    background: #1c1c1c;
    padding: 32px 0;
    margin-top: 30px;
}

.lead-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.lead-text {
    flex: 1 1 300px;
    max-width: 500px;
}

.lead-title {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 5px;
}

.lead-subtitle {
    color: #ff0000;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 15px;
}

.form-container {
    display: flex;
    justify-content: center;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 380px;
}

.form-field {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 3px;
    font-size: 14px;
    height: 45px;
    width: 100%;
}

.submit-btn {
    background: #ff4a07;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: #e63e06;
}

.lead-image {
    flex: 1 1 300px;
    text-align: center;
}

.lead-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lead-title {
        font-size: 28px;
    }
    .lead-subtitle {
        font-size: 16px;
    }
}

        /* Make lead section more fluid for intermediate screen sizes */
        @media (max-width: 1100px) {
            .lead-image {
                margin-right: 0;
            }
            
            .lead-image img {
                margin-left: 0;
                width: min(256px, 100%);
            }
            
            .lead-text {
                margin-left: 40px;
            }
        }

        @media (max-width: 960px) {
            .lead-text {
                margin-left: 20px;
                max-width: 350px;
            }
            
            .lead-image img {
                width: min(220px, 100%);
            }
        }

        /* Welcome Section */
        .welcome-section {
            padding: 30px 0;
        }

        .welcome-content {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        .welcome-text {
            flex: 2;
        }

        .welcome-text h2 {
            color: #000000;
            font-size: 25px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .welcome-text p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 2em;
        }

        .welcome-text p:last-child {
            margin-bottom: 0;
        }

        .welcome-text a {
            color: #0170B9;
            text-decoration: none;
        }

        .welcome-image {
            flex: 1;
            text-align: center;
            margin-top: 60px;
        }

        .welcome-image img {
            border-radius: 50%;
            width: 220px;
            height: 220px;
        }

        /* Global link styles */
        a {
            color: #0170B9;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        /* Section Headers */
        .section-header {
            margin: 40px 0 15px 0;
        }

        .section-header-content {
            background: #383838;
            padding: 6px 8px;
            width: 100%;
        }

        .section-header h1,
        .section-header h2 {
            color: #ffffff;
            font-size: 29px;
            font-family: 'Roboto', sans-serif;
            margin: 0;
            font-weight: bold;
            text-transform: uppercase;
        }

        .section-header a {
            color: #ffffff;
            text-decoration: none;
        }

        /* Content Sections */
        .content-section {
            margin-bottom: 20px;
        }

        .content-section p {
            margin-bottom: 18px;
            font-size: 18px;
            line-height: 1.6;
        }

        .content-section .beginner-text {
            text-align: center;
            padding: 10px;
            margin-bottom: 22px;
            font-size: 22px;



        }

        /* Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin: 15px 0;
        }

        .card {
            padding: 10px 10px 10px 10px;
            border-style: solid;
            border-width: 1px 1px 1px 1px;
            border-color: #e0e0e0;
            border-radius: 10px 10px 10px 10px;
            box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5);
            text-align: center;
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-3px);
        }

        .card img {
            width: 100%;
            height: auto;
            margin-bottom: 10px;
        }

        .card h3 {
            color: #059dc5;
            margin-bottom: 20px;
            font-size: 20px;
            font-family: 'Roboto', sans-serif;
            text-transform: uppercase;
        }

        .card h3 a {
            color: #059dc5;
            text-decoration: none;
        }

        .card p {
            font-size: 16px;
            line-height: 1.4;
        }

        /* Course Section */
        .course-header {
            text-align: center;
            margin: 65px 0 20px 0;
        }

        .course-header h2 {
            color: #313131;
            font-size: 39px;
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
        }

        .course-header a {
            color: #313131;
            text-decoration: none;
            transition: color 0.3s;
        }

        .course-header a:hover {
            color: #ff4a07;
        }

        .course-section {
            background: #1c1c1c;
            padding: 30px 0;
            margin: 20px 0;
        }

        .course-content {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .course-image {
            flex: 1;
        }

        .course-image img {
            width: 338px;
            height: 514px;
            max-width: 100%;
        }

        .course-text {
            flex: 1;
            color: #ffffff;
        }

        .course-text h2 {
            color: #ffffff;
            font-size: 24px;
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .feature-list {
            list-style: none;
            margin: 15px 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 8px;
            padding-left: 0;
            font-size: 18px;
            font-family: 'Open Sans', sans-serif;
            line-height: 1.7em;
        }

        .feature-list .icon {
            margin-right: 10px;
            margin-top: 4px;
            color: #3FB82B;
            font-size: 16px;
            flex-shrink: 0;
        }

        .cta-button {
            background: #0e80ab;
            color: #ffffff;
            padding: 12px 20px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            margin-top: 10px;
            font-size: 25px;
            font-family: 'Open Sans', sans-serif;
            font-weight: 500;
            line-height: 1.4em;
            width: 100%;
            max-width: 550px;
            height: 120px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background: #0c6d94;
            text-decoration: none;
        }

        /* Popular Lessons */
        .popular-section {
            background: #000000;
            padding: 8px 0 15px 0;
            margin: 30px 0;
            position: relative;
        }

        .popular-section::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 50%;
            background-image: url('https://www.jazzguitar.be/blog/wp-content/uploads/2019/09/jazz-guitar-online-2.jpg');
            background-position: left center;
            background-repeat: no-repeat;
            background-size: initial;
            opacity: 1;
        }

        .popular-content {
            text-align: center;
            color: #ffffff;
            position: relative;
            z-index: 2;
        }

        .popular-content h3 {
            color: #FF4A07;
            font-size: 28px;
            font-family: 'Open Sans', sans-serif;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .popular-list {
            list-style: none;
            max-width: 600px;
            margin: 0 auto;
        }

        .popular-list li {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .popular-list .icon {
            margin-right: 10px;
            color: #59ae00;
            font-size: 14px;
            flex-shrink: 0;
        }

        .popular-list a {
            color: #ffffff;
            text-decoration: none;
            font-size: 20px;
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.3;
            transition: color 0.3s;
        }

        .popular-list a:hover {
            color: #038abc;
            text-decoration: none;
        }

        /* Forum Section */
        .forum-section {
            background: #000000;
            color: #ffffff;
            padding: 0;
            text-align: center;
			margin-top: 30px;
        }

        .forum-title {
            color: #FF4A07;
            font-size: 65px;
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
        }

        .forum-title a {
            color: #FF4A07;
            text-decoration: none;
        }

        .forum-description {
            font-size: 18px;
        }

        .forum-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin: 0 0 24px 0;
        }

        .stat {
            background: rgba(0,0,0,0);
        }

        .stat-number {
            font-size: 72px;
            font-weight: 100;
            color: #54595F;
        }

        .stat-label {
            font-size: 26px;
            font-weight: 600;
            margin-top: -5px;
        }

        .forum-cta {
            background: #1c1c1c;
            padding: 4px 0;
            margin: 0;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            overflow-x: hidden;
        }

        .forum-cta p {
            color: #6EC1E4;
            font-size: 20px;
            font-family: 'Roboto', sans-serif;
            margin: 0;
            text-align: center;
        }

        .forum-cta a {
            color: #6EC1E4;
            text-decoration: none;
            transition: color 0.3s;
        }

        .forum-cta a:hover {
            color: #FF4A07;
        }

        /* Two Column Layout */
        .two-column {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            margin: 15px 0;
        }

        .two-column .text-column {
            flex: 1;
        }

        .two-column .image-column {
            flex: 1;
            text-align: center;
        }

        .two-column .image-column img {
            max-width: 100%;
            height: auto;
        }

        /* Link Lists */
        .link-list {
            list-style: none;
            padding: 0;
        }

        .link-list li {
            margin-bottom: 6px;
            display: flex;
            align-items: flex-start;
        }

        .link-list .icon {
            color: #038abc;
            margin-right: 8px;
            font-size: 16px;
            margin-top: 1px;
            flex-shrink: 0;
        }

        .link-list a {
            color: #54595F;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            font-family: 'Open Sans', sans-serif;
            transition: color 0.3s;
        }

        .link-list a:hover {
            color: #0274cc;
            text-decoration: none;
        }

        /* Standards Lists */
        .standards-grid {
            display: flex;
            gap: 15px;
            margin: 15px 0;
        }

        .standards-column {
            flex: 1;
        }

        /* Footer */
        .footer {
            background: #1c1c1c;
            color: #ffffff;
            padding: 35px 0 15px 0;
            border-top: 5px solid #ff4a07;
            margin-top: 50px;
            min-height: 430px;
            display: flex;
            align-items: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .footer-section h5 {
            color: #ffffff;
            font-size: 20px;
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 6px;
        }

        .footer-section a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-family: 'Open Sans', sans-serif;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #FF4A07;
            text-decoration: none;
        }

        .footer-section .social-icon {
            color: #ffffff;
            margin-right: 8px;
            font-size: 16px;
        }

        .footer-section:nth-child(2) ul {
            margin-bottom: 150px;
        }

        .footer-form {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-form input {
            background: #ffffff;
            border: 1px solid #ddd;
            padding: 8px;
            border-radius: 3px;
        }

        .footer-form button {
            background: #ff4a07;
            color: #ffffff;
            border: none;
            padding: 8px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 15px;
            font-family: 'Open Sans', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .footer-bottom {
            padding-top: 15px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.4);
            font-size: 16px;
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #059dc5;
            color: #ffffff;
            border: none;
            border-radius: 3px;
            padding: 10px 12px;
            font-size: 15px;
            cursor: pointer;
            z-index: 1000;
            transition: background 0.3s;
            display: none;
        }

        .back-to-top:hover {
            background: #047a9a;
        }

        .back-to-top.visible {
            display: block;
        }

        /* Responsive Design */

        @media (max-width: 1024px) {
            /* Mobile Navigation */
            .nav-container {
                padding: 0 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                min-height: 50px;
            }
            
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #383838;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                padding: 0;
                z-index: 1001;
            }
            
            .main-nav.active {
                display: flex;
            }
            
            .main-nav li {
                width: 100%;
            }
            
            .main-nav a {
                color: #ffffff;
                padding: 15px 20px;
                border-bottom: 1px solid #555;
                font-size: 16px;
                width: 100%;
                text-align: left;
            }
            
            .main-nav a:hover {
                background-color: #0e80ab;
            }
            
            .mobile-menu-toggle {
                display: block;
                position: relative;
                right: 0;
                top: 0;
                transform: none;
                margin-left: auto;
            }
            
            .nav-section {
                position: relative;
            }

            /* Popular Section Background */
            .popular-section::before {
                display: none;
            }
        }

        @media (max-width: 767px) {
            /* Mobile Header */
            .header {
                height: auto;
                min-height: 120px;
                padding: 15px 0;
            }
            
            .header-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                align-items: center;
                justify-content: center;
            }
            
            .logo {
                order: 1;
            }
            
            .logo img {
                width: 263px;
                height: auto;
                max-width: 100%;
            }
            
            .beginners-section {
                order: 2;
                margin-left: 0;
                text-align: center;
            }
            
            .beginners-link {
                font-size: 20px;
                display: inline-block;
            }
            
            .underline-img {
                margin-top: -15px;
                text-align: center;
            }
            
            .underline-img img {
                width: 207px;
                max-width: 100%;
            }

            /* Mobile Navigation */
            .nav-container {
                padding: 0 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                min-height: 50px;
            }
            
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #383838;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                padding: 0;
                z-index: 1001;
            }
            
            .main-nav.active {
                display: flex;
            }
            
            .main-nav li {
                width: 100%;
            }
            
            .main-nav a {
                color: #ffffff;
                padding: 15px 20px;
                border-bottom: 1px solid #555;
                font-size: 16px;
                width: 100%;
                text-align: left;
            }
            
            .main-nav a:hover {
                background-color: #0e80ab;
            }
            
            .mobile-menu-toggle {
                display: block;
                position: relative;
                right: 0;
                top: 0;
                transform: none;
                margin-left: auto;
            }
            
            .nav-section {
                position: relative;
            }
            
            /* Lead Section - Mobile Specific */
            .lead-section {
                padding: 20px 0 0 0;
                min-height: auto;
                margin-top: 20px;
            }
            
            .lead-content {
                flex-direction: column;
                gap: 20px;
                align-items: center;
                text-align: center;
            }
            
            .lead-text {
                margin-left: 0;
                max-width: 100%;
                order: 2;
            }
            
            .lead-title {
                font-size: 23px;
                font-family: 'Roboto', sans-serif;
                line-height: 1.2;
                text-align: center;
            }
            
            .lead-subtitle {
                font-size: 14px;
                text-align: center;
            }
            
            .form-container {
                padding: 0;
                display: flex;
                justify-content: center;
                text-align: center;
            }
            
            .email-form {
                width: 100%;
                max-width: 370px;
                align-items: center;
            }
            
            .form-field {
                max-width: 370px;
                width: 370px;
                height: 45px;
            }
            
            .submit-btn {
                max-width: 370px;
                width: 370px;
                height: 45px;
                font-size: 16px;
            }
            
            .lead-image {
                margin-right: 0;
                margin-top: 0;
                order: 1;
                justify-content: center;
                align-items: center;
            }
            
            .lead-image img {
                width: 256px;
                margin-left: 0;
                margin-top: 0;
            }
            
            /* Welcome Section */
            .welcome-content {
                flex-direction: column;
                text-align: center;
            }
            
            .welcome-image {
				width: 100%;
                margin-top: 20px;
                order: -1;
				display: flex;
                justify-content: center;
            }
            
            .welcome-image img {
                width: 220px;
                height: 220px;
            }
            
            .welcome-text h2 {
                font-size: 22px;
            }
            
            .welcome-text p {
                font-size: 16px;
				text-align: left;
            }
            
            /* Cards */
           
            .card p {
                font-size: 14px;
            }
            
            .card h3 {
                font-size: 20px;
            }
            
            .card-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            /* Course Section */
            .course-header {
                margin: 40px 0 20px 0;
            }
            
            .course-header h2 {
                font-size: 21px;
                padding: 0 10px;
            }
            
            .course-content {
                flex-direction: column;
                text-align: left;
                gap: 20px;
            }
            
            .course-image img {
                width: 250px;
                height: auto;
            }
            
            .course-text h2 {
                font-size: 20px;
				text-align: center;
            }
            
            .feature-list li {
                font-size: 16px;
            }
            
            .cta-button {
                font-size: 18px;
                height: 80px;
                padding: 10px 15px;
            }
            
            /* Popular Section */
            .popular-section::before {
                display: none;
            }
            
            .popular-content h3 {
                font-size: 22px;
                padding: 0 10px;
            }
            
            .popular-list a {
                font-size: 16px;
            }
            
            /* Forum Section */
            .forum-title {
                font-size: 35px;
                padding: 10px 10px 0 10px;
				line-height: 1.5em;
            }
            
            .forum-description {
                font-size: 18px;
                padding: 10px 10px;
            }
            
            .forum-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .stat-number {
                font-size: 65px;
            }
            
            .stat-label {
                font-size: 26px;
            }
            
            .forum-cta p {
                font-size: 20px;
                padding: 10px 10px;
            }
            
            /* Two Column Layout */
            .two-column {
                flex-direction: column !important;
                gap: 20px;
            }

            .two-column .text-column {
                order: 1;
            }

            .two-column .image-column {
                order: 2;
                flex: none !important;
                width: 100% !important;
                display: block !important;
                text-align: center !important;
            }

            .two-column .image-column a {
                display: block !important;
                text-align: center !important;
            }

            .two-column .image-column img {
                max-width: 100% !important;
                height: auto !important;
                margin: 0 auto !important;
                display: block !important;
                text-align: center !important;
            }
            
            .link-list a {
                font-size: 16px;
            }
			
			.link-list .icon {
                margin-top: -1px;
            }
            
            /* Standards Grid */
            .standards-grid {
                flex-direction: column;
                gap: 10px;
            }
            
            /* Section Headers */
            .section-header {
                margin: 30px 0 15px 0;
            }
            
            .section-header h1,
            .section-header h2 {
                font-size: 22px;
            }
            
            .content-section p {
                font-size: 16px;
            }
            
            .content-section .beginner-text {
                font-size: 18px;
                padding: 10px 5px;
            }
            
        /* Footer */
.footer {
    height: auto;
    min-height: auto;
    padding: 25px 0 15px 0;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 25px !important;
}

.footer-section:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.footer-section:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.footer-section:nth-child(2) ul {
    margin-bottom: 0 !important;
}

.footer-section.newsletter {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
}

.footer-section h5 {
    font-size: 18px;
}

.footer-section a {
    font-size: 14px;
}

.footer-bottom p {
    font-size: 14px;
}
            
            /* Back to top */
            .back-to-top {
                bottom: 20px;
                right: 20px;
                padding: 8px 10px;
                font-size: 14px;
            }
        }

@media (max-width: 480px) {
.footer-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 20px !important;
}

.footer-section:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.footer-section:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.footer-section.newsletter {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
}

.footer-bottom {
    padding-top: 25px;
    margin-top: 0;
}
}
		
		@media (max-width: 835px) {
    .forum-stats {
        flex-direction: column;
        gap: 20px;
    }
			
	.forum-title {
        font-size: 55px;
        padding: 10px 10px 0 10px;
        line-height: 1.5em;
    }
}