.contact-container {
    max-width: 800px;
    margin: 100px auto 50px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-container h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 2px solid #eee;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.contact-info h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info h2 i {
    color: #3498db;
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 25px;
}

.contact-info ul {
    list-style: none;
    padding: 0 25px;
    margin: 20px 0;
    max-width: 600px;
    margin: 20px auto;
}

.contact-info ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
}

.contact-info ul li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.contact-info strong {
    color: #2c3e50;
}

.contact-info i {
    color: #666;
}

.contact-info p:last-child {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #e1e1e1;
}

.contact-methods {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.contact-method {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2em;
    color: #3498db;
    margin-bottom: 15px;
}

.contact-method h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-method a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-method a:hover {
    color: #2980b9;
}

.feedback-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-container {
        margin: 20px;
    }
}

#emailPlaceholder {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
}

.show-email-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
    margin: 0 auto;
}

.show-email-btn:hover {
    background: #2980b9;
}

.revealed-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #3498db;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
    margin: 0 auto;
}

.revealed-email:hover {
    color: #2980b9;
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
} 