.tableau-header {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    margin-top: 150px;
}

.tableau-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffa07a;
}

.tableau-header p {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.8;
}

.tableau-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.tableau-card {
    width: 100%;
    min-width: 1200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 100px;
}

.tableau-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.tableau-embed {
    position: relative;
    width: 100%;
    max-width: 1200px;  /* Match exact Tableau width */
    margin: 0 auto;
    height: 800px;      /* Match exact Tableau height */
    overflow: visible;
}

.tableau-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tableau-info {
    padding: 1.5rem;
}

.tableau-info h2 {
    color: #ffa07a;
    margin-bottom: 1rem;
}

.tableau-info p {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tableau-links {
    margin-top: 1rem;
}

.tableau-links a {
    color: #ffa07a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.tableau-links a:hover {
    color: #ff8c5a;
}

.tableau-links i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tableau-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .tableau-header {
        padding: 1rem;
    }

    .tableau-header h1 {
        font-size: 2rem;
    }
}