/* General Styles */
#sub_body {
    font-family: 'Roboto', sans-serif;
    /* Modern font */
    margin: 0;
    background-color: #1e1e1e;
    color: #ddd;
    /* Slightly lighter text for better contrast */
    line-height: 1.7;
    /* More comfortable line height */
    padding: 40px;
    /* Add padding to the main content area */
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 140px);
}




.about-content {
    text-align: left;
    max-width: 800px;
    /* Limit the width for better readability */
    margin: 0 auto;
    /* Center the content */
    flex: 1;
    /* Let about content take up available space */
}

.gold-heading {
    color: #D4AF37;
    font-size: 2.8em;
    /* Larger heading */
    margin-bottom: 30px;
    text-align: center;
}

.about-content h2 {
    color: #D4AF37;
    margin-top: 40px;
    /* More spacing between sections */
    font-size: 1.8em;
    /* Slightly larger subheadings */
    border-bottom: 2px solid #333;
    /* Subtle underline for subheadings */
    padding-bottom: 10px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 30px;
    /* Add space below list */
}

.about-content ul li {
    margin-bottom: 10px;
}

.about-content strong {
    color: #D4AF37;
    font-weight: 600;
}

#ownerinfo {
    display: flex;
    align-items: center;
    /* Vertically centers items */
}

#ownerinfo>* {
    /* Targets all direct children of #ownerinfo */
    padding: 5px;
    /* Adds padding to all sides of each element */
}

/* Optional: Adjust image size for better layout */
#ownerinfo img {
    max-width: 150px;
    /* Example size, adjust as needed */
    height: auto;
    margin-right: 20px;
    /* Adds some space between image and text */
    border-radius: 60px;
}

/* Instagram SVG */
#insta_svg {
    display: flex;
    justify-content: center;
    /* Center the Instagram link */
    margin-top: 40px;
}

#insta_img {
    display: inline-flex;
    /* Align icon and text horizontally */
    align-items: center;
    text-decoration: none;
    color: #D4AF37;
    /* Match the gold color */
    transition: color 0.3s ease;
}

#insta_img img {
    width: 30px;
    /* Adjust size as needed */
    height: 30px;
    margin-right: 10px;
}

#insta_img:hover {
    color: #a88a2b;
    /* Slightly darker gold on hover */
}

/* Footer Styles */

footer {
    background-color: black;
    color: #D4AF37;
    padding: 20px 0;
    /* Increased padding */
    margin-top: auto;
    width: 100%;
}

footer .container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 490px) {
    #ownerinfo {
        flex-direction: column-reverse;
    }

    #OwnerProfile {
        display: flex;
        flex-direction: column;
    }

    #ownerinfo img {
        border-radius: 75px;
    }
}