.contact-container {
    width: 100%;
    margin: 0;
    padding: 40px;
    background-color: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-container h1 {
    font-size: 2.5em;
    color: var(--text-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.contact-container .subtitle {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: normal;
    text-align: center;
}

.contact-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--background-color);
    border-radius: 8px;
    border: 1px solid var(--border-color-light);
}

.contact-section h2 {
    font-size: 1.8em;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.contact-section h2 i {
    margin-right: 15px;
    color: var(--primary-color);
}

.contact-section p {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 35px; /* To align with the text next to the icon */
}

.contact-section p strong {
    color: var(--text-color);
    font-weight: 600;
}