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

:root {
    --bg-color: #ffffff;
    --text-color: #333;
    --underline-color: #60041c;
    --underline-hover-color: gray;
    --accent-color: #007BFF;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --cta-background: linear-gradient(135deg, #60041c, #7a1f2d);
    --cta-text-color: #fff;
    --footer-bg-color-start: #ffffff;
    --footer-bg-color-end: #f9f9f9;
    --tweet-bg-color-start: #f3f3f3;
    --tweet-bg-color-end: #e6e6e6;
    --secondary-text-color: #777;
    --divider-color: #ddd;
    --underline-hover-color: gray;
}

.dark-mode {
    --bg-color: #1e1e1e;
    --text-color: #f5f5f5;
    --underline-color: #ffffff;
    --underline-hover-color: #cccccc;
    --accent-color: #1e90ff;
    --shadow-color: rgba(255, 255, 255, 0.1);
    --cta-background: #2c2c2c; /* Use a solid color or a dark gradient */
    --cta-text-color: #f5f5f5;
    --footer-bg-color-start: #1e1e1e;
    --footer-bg-color-end: #2b2b2b;
    --tweet-bg-color-start: #2c2c2c;
    --tweet-bg-color-end: #3a3a3a;
    --secondary-text-color: #ccc;
    --divider-color: #444;
    --underline-hover-color: #999;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background-color: var(--bg-color);
    width: 100%;
    box-shadow: 0 2px 5px var(--shadow-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.hero,
.real-services {
    padding: 20px 5%;
    margin: 80px auto 0 auto;
}

.header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1980px;
    max-width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.navbar-right {
    justify-content: flex-end;
}

.navbar-left a,
.navbar-right a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

.navbar-right a.cta {
    text-decoration: none;
    position: relative;
}

.navbar-right a.cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background-color: var(--underline-color);
    transition: background-color 0.3s ease;
}

.navbar-right a.cta:hover::after {
    background-color: var(--underline-hover-color);
}

.hamburger {
    display: none;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.logo img {
    max-width: 150px;
    height: auto;
}

#logo-light {
    display: inline;
}

#logo-dark {
    display: none;
}

.dark-mode #logo-light {
    display: none;
}

.dark-mode #logo-dark {
    display: inline;
}

#favicon-light {
    display: inline;
}

#favicon-dark {
    display: none;
}

.dark-mode #favicon-light {
    display: none;
}

.dark-mode #favicon-dark {
    display: inline;
}

.dark-mode .navbar {
    padding: 20px 5%;
}

.dark-mode-toggle span {
    display: inline-block;
    margin-right: 5px; 
    vertical-align: middle; 
}

.dark-mode-toggle {
    position: fixed;
    top: 85px;
    right: 20px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    line-height: normal;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: background-color 0.3s, color 0.3s;
    z-index: 1000;
}

.dark-mode-toggle:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.dark-mode .cta-section {
    background-color: #2c2c2c;
    color: #f5f5f5;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.dark-mode .cta-section h1 {
    color: #fff;
}

.dark-mode .cta-section p {
    color: #ccc;
}

.dark-mode .cta-button.primary {
    background-color: #1e90ff;
    color: #fff;
    box-shadow: 0 4px 8px rgba(30, 144, 255, 0.3);
    border: none;
}

.dark-mode .cta-button.primary:hover {
    background-color: #1c86e3;
    transform: scale(1.05);
}

.dark-mode .cta-button.secondary {
    background-color: transparent;
    color: #1e90ff;
    border: 2px solid #1e90ff;
    transition: background-color 0.3s, color 0.3s;
}

.dark-mode .cta-button.secondary:hover {
    background-color: #1e90ff;
    color: #fff;
    transform: scale(1.05);
}

.dark-mode .footer {
    background-color: #333;
    color: #f5f5f5;
}

.dark-mode .footer a {
    color: #ccc;
}

.dark-mode .footer a:hover {
    color: #1e90ff;
}

.dark-mode .footer .x-twitter-icon {
    fill: #fff;
    transition: fill 0.3s;
}

.dark-mode .footer .footer-social a {
    color: #ccc;
}

.dark-mode .footer .footer-social a:hover {
    color: #1e90ff;
}

html {
    scroll-behavior: smooth;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 5%;
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
    margin: 50px auto 0;
}

.hero-content {
    width: 100%;
    max-width: 1980px;
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.hero-description {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-description h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-description p {
    font-size: 1.2em;
    line-height: 1.6;
}

.hero-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-image-row {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    margin-bottom: 70px;
    overflow: hidden;
}

.property-listing {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    min-height: 50vh;
    overflow: hidden;
    margin-top: 70px;
    margin-bottom: 10px;
    background: black;
}

.property-video {
    position: relative;
    top: 0;
    left: 0;
    width: 60%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    z-index: 0;
    transition: filter 0.3s;
}

.muted {
    filter: brightness(0.7);
}

.property-description {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
    max-width: 1000px;
    margin: 0 auto;
}

.property-description h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-top: 70px;
    margin-bottom: 20px;
}

.property-description p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 50px;
}

.mute-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 2;
}

.real-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 5%;
    margin-top: 50px;
    justify-content: center;
}

#services {
    scroll-margin-top: 140px;
}

.service-item {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}

.service-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px var(--shadow-color);
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 15px 0;
    text-align: left;
}

.service-card-title {
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    color: inherit;
}

.service-card-title:hover {
    color: var(--accent-color);
}

.service-card-description {
    font-size: 0.9em;
}

.link-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    width: 35px;
    height: 35px;
}

.link-icon:hover {
    background-color: rgba(255, 255, 255, 1);
}

.link-icon img {
    width: 80%;
    height: 80%;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10000;
}

.fullscreen-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 550px;
    max-height: 100vh;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: 1px solid var(--divider-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.overlay-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin: 25px 0 10px;
}

.thumbnail-and-description {
    display: flex;
    align-items: center;
}

.overlay-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
}

.overlay-description {
    font-size: 1rem;
    color: var(--secondary-text-color);
    margin: 0;
}

.overlay-text-field {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 15px;
    gap: 15px;
}

.overlay-static-text {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: normal;
    color: var(--secondary-text-color);
    border: 1px solid var(--divider-color);
    border-radius: 8px;
    background-color: var(--bg-color);
    transition: background-color 0.3s, border-color 0.3s;
    box-sizing: border-box;
}

.overlay-static-text:hover {
    background-color: var(--bg-color);
    border-color: var(--underline-hover-color);
}

.transition-section {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
    max-width: 1000px;
    margin: 0 auto;
}

.transition-section h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-top: 70px;
    margin-bottom: 20px;
}

.transition-section p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 50px;
}

.cta-section {
    background: linear-gradient(135deg, #60041c, #7a1f2d);
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 100px auto;
    box-sizing: border-box;
}

.cta-container {
    max-width: 1200px;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.cta-section h1 {
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.cta-button {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button .fas {
    margin-right: 10px; 
    font-size: 1.2rem; 
    line-height: 1; 
    vertical-align: middle; 
}

.cta-button.primary {
    background-color: #007BFF;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.cta-button.primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.cta-button.secondary {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #0056b3;
}

.cta-button.secondary:hover {
    background-color: #007BFF;
    color: #fff;
    transform: scale(1.05);
}

.footer {
    background: linear-gradient(135deg, var(--footer-bg-color-start), var(--footer-bg-color-end));
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

.footer h4 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.2rem;
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 calc(16.66% - 20px);
}

.footer-column.empty-column {
    flex: 1 1 calc(16.66% - 20px);
}

.footer-column.tweet-card {
    background: linear-gradient(135deg, var(--tweet-bg-color-start), var(--tweet-bg-color-end));
    border-radius: 12px;
    padding: 20px;
    color: var(--text-color);
    margin: 0;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-column.tweet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer .tweet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 5px;
}

.footer .tweet-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.footer .tweet-content {
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0;
    color: var(--secondary-text-color);
}

.footer .tweet-card strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.footer .x-icon {
    position: absolute;
    right: 20px;
    top: 24%;
    transform: translateY(-50%);
    margin-left: auto;
}

.footer .x-twitter-icon {
    width: 20px;
    height: 20px;
    fill: #000;
    transition: fill 0.3s;
}

.footer-divider {
    height: 1px;
    background-color: #444;
    width: auto;
    margin: 100px auto 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 20px 5% 20px 0;
    width: 100%;
}

.footer-bottom .rights-reserved {
    flex: none;
    margin: 0;
    text-align: left;
    color: var(--text-color);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex: none;
}

.footer-bottom .social-icons {
    margin-left: auto;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    padding: 8px 16px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem; /* Increase font size */
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .desktop-only-break {
        display: block;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        order: 1;
        margin: 0 auto 0 0;
        max-width: 130px;
        padding-left: 5%;
    }

    .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        left: 20px;
        top: 20px;
        z-index: 1001;
        cursor: pointer;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        padding: 0;
    }

    .hamburger .bar {
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 2px;
        transform-origin: center;
        transition: transform 0.3s, opacity 0.3s;
        position: relative;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 75%;
        max-width: 300px;
        padding: 20px;
        box-shadow: 0 4px 8px var(--shadow-color);
        top: 0;
        left: 0;
        height: 100%;
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 1000;
    }

    .mobile-menu.active {
        transform: translateX(0);
        z-index: 1003;
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--text-color);
        padding: 15px 20px;
        font-size: 1em;
        display: block;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1002;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .dark-mode-toggle {
        right: 5px;
    }

    .dark-mode-toggle span {
        margin-right: 5px; 
    }

    .hero {
        margin: 0;
        padding: 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin: 0;
    }

    .hero-image-row {
        display: none;
    }

    .hero-description {
        text-align: left;
        padding: 30px;
        margin-top: 50px;
    }

    .hero-description h1 {
        font-size: 1.5em;
        line-height: 1.3;
    }

    .hero-description p {
        font-size: 1.1em;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .property-listing {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        overflow: hidden;
        min-height: 30vh;
        margin: 30px 0 10px;
        padding: 10px;
    }

    .property-video {
        position: relative;
        top: 0;
        left: 0;
        width: 132vw;
        height: auto;
        max-height: 60vh;
        object-fit: cover;
        z-index: 0;
        transition: filter 0.3s;
    }

    .mute-button {
        bottom: 20px;
        right: 20px;
    }

    .property-description {
        text-align: left;
        padding: 30px;
        margin-top: 20px;
    }

    .property-description h1 {
        font-size: 1.5em;
        line-height: 1.3;
    }

    .property-description p {
        font-size: 1.1em;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .real-services {
        grid-template-columns: 1fr;
        justify-items: center;
        font-size: 1.1em;
        line-height: 1.5;
    }

    #services {
        scroll-margin-top: 160px;
    }

    .service-item {
        max-width: 100%;
        margin: 0 10px;
    }

    .service-card {
        max-width: 100%;
    }

    .service-card-title {
        font-weight: bold;
        font-size: 1.2em;
        margin: 0 5px 0 0;
    }

    .service-card-description {
        font-size: 1em;
        margin: 0 5px 0 0;
    }

    .contact-section-unique {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 70px 0 50px;
        border-radius: 0;
        overflow: hidden;
    }

    .overlay-description {
       font-size: 0.9rem;
    }

    .overlay-static-text {
       display: flex;
       align-items: center; 
       width: 100%; 
       padding: 12px; 
       font-size: 0.9rem; 
       font-weight: normal; 
       border-radius: 8px; 
       box-sizing: border-box;
    }

    .transition-section {
        text-align: left;
        padding: 30px;
    }

    .transition-section h1 {
        font-size: 1.5em;
        line-height: 1.3;
        margin-top: 30px;
    }

    .transition-section p {
        font-size: 1.1em;
        line-height: 1.5;
        margin-bottom: 60px;
    }

    .cta-section {
        padding: 20px 5%;
        height: auto;
        margin: 0;
    }

    .cta-container {
        text-align: center;
        max-width: 100%;
    }

    .cta-section h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .cta-section p {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        font-size: 0.9rem;
        width: 100%;
        padding: 12px 20px;
    }

    .footer {
        background: #f0f0f0;
    }

    .footer-columns {
        flex-direction: column;
        gap: 20px;
        margin-left: 15px;
    }

    .footer h4 {
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom .social-icons {
        margin-top: 10px;
        margin-left: 0;
    }

    .footer .tweet-card {
        width: 90%;
        flex-direction: column;
        align-items: center;
    }

    .footer .tweet-header {
        margin-right: auto;
    }

    .footer .tweet-card::after {
        top: auto;
        bottom: 10px;
        right: 10px;
    }

    .footer .tweet-logo {
        margin: 0 auto 10px;
    }

    .footer .tweet-content {
        font-size: 1rem;
    }

   .back-to-top {
       font-size: 1rem; /* Increase font size */
       font-weight: normal; 
       right: 5px;
   }
}

