/* --- DT Simple Footer Styles --- */

.dt-simple-footer-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent; /* Footer usually sits on page BG */
}

.dtt-simple-footer-section img {
    max-width: 100%;
    height: auto;
}

.dtsf-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- The Pill Bar --- */
.dtsf-bar {
    border-radius: 60px; /* High value for pill shape */
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    min-height: 80px;
}

/* Logo */
.dtsf-logo img {
    max-height: 40px; /* Constrain logo height to fit bar */
    width: auto;
    display: block;
}

/* Navigation */
.dtsf-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.dtsf-nav a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bold links per image */
    font-size: 1rem;
    transition: opacity 0.2s;
}

.dtsf-nav a:hover {
    opacity: 0.8;
}

/* --- Copyright Area --- */
.dtsf-copyright {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.dtsf-copyright a {
    color: inherit;
    text-decoration: underline;
}
.dtsf-copyright a:hover {
    text-decoration: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .dtsf-bar {
        flex-direction: column;
        padding: 30px;
        border-radius: 30px; /* Slightly less rounded on mobile */
        gap: 20px;
        text-align: center;
    }

    .dtsf-nav {
        flex-direction: column;
        gap: 15px;
    }
}