/* General Page Settings */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #222;
}

/* Logo Header */
.header-logo {
    text-align: center;
    background: white;
    padding: 20px 0;
}

.icc-logo {
    width: 220px;
    height: auto;
}

/* Hero Section */
.hero {
    background: #003366;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.hero h1 {
    font-size: 38px;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

.btn {
    background: #ffcc00;
    padding: 12px 25px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

/* Section Container */
.section {
    background: white;
    margin: 20px auto;
    padding: 30px;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.section h2 {
    color: #003366;
    border-left: 5px solid #003366;
    padding-left: 10px;
}

/* Table Styling */
.table-container {
    overflow-x: auto; /* Fix mobile overflow */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background: #003366;
    color: white;
}

/* Speaker Layout */
.speaker-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eef4ff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 5px solid #003366;
}

.speaker-text {
    flex: 2;
    padding-right: 20px;
}

.speaker-photo img {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 10px;
}

/* 📱 Mobile Fixes */
@media (max-width: 600px) {

    /* Speakers */
    .speaker-row {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .speaker-text {
        padding-right: 0;
    }

   .speaker-photo img {
    max-width: 140px;
    width: 100%;
    height: auto;
    margin-top: 15px;
}
    /* Reduce hero title size */
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* Footer */
.footer {
    text-align: center;
    background: #003366;
    color: white;
    padding: 15px;
    margin-top: 40px;
}
