body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

.wrapper {
    width: 100%;
    padding: 20px;
}


.content {
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 10px;
}

h2 {
    font-size: 1.9rem !important;
}

p, ul, ol {
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: left;
}

ul, ol {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    text-align: left;
}

.cta {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-align: center;
}

.cta:hover {
    background-color: #219150;
}



/* Flex layout for comparison sections */
.comparison-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.comparison-section > div {
    flex: 1;
    min-width: 300px;
}

/* Highlighted feature icons */
.feature-icons {
    display: flex;
    justify-content: space-around;
    background-color: #f39c12;
    padding: 20px;
    border-radius: 8px;
    color: white;
    text-align: center;
}

.feature-icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Join button section */
.join-section {
    background-color: #34495e;
    padding: 20px;
    text-align: center;
    color: white;
    border-radius: 8px;
}

.join-section .cta {
    background-color: #e67e22;
}

.join-section .cta:hover {
    background-color: #d35400;
}

/* Flex layout for side-by-side sections */
.flex-sections {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.flex-sections h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-align: left;
}   

.flex-sections h2 pre {
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-align: center;
}

.flex-sections > div {
    flex: 1;
    min-width: 300px;
}

.numeric-list {
    list-style-type: decimal;
    padding-left: 40px;
}

.left-text {
    text-align: left;
    margin: 20px 0;
}

.bullet-list {
    list-style-type: none;
    margin-bottom: 25px;
}

.bullet-list li {
    margin-bottom: 20px;
    line-height: 1.8;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
}

.bullet-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#event-section {
    background-color: #f5f5f5;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
}

#why-ai-section {
    background-color: #f5f5f5;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
    margin-top: 50px;
}

@media (max-width: 768px) {

    .wrapper {
        width: 100%;
        padding: 3px;
    }

    .flex-sections {
        flex-direction: column;
    }
    
    .tm-sc-button {
        text-align: center;
    }

    #event-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    #why-ai-section {
        background-color: #f5f5f5;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
        margin-top: 50px;
    }
}

/* Comparison Tables Styling */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 80%;
    min-width: 400px;
    border-collapse: collapse;
    background: white;
    font-size: 1rem;
}

.comparison-table th {
    background-color: #f8f9fa;
    color: #333;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    border: 2px solid #ddd;
    width: 40%;
}

.comparison-table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
    vertical-align: top;
    line-height: 1.6;
    width: 40%;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .comparison-table {
        width: 95%;
        min-width: 350px;
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 12px;
    }
}
