:root {
    --primary-color: #2196f3;
    --hover-color: #1976d2;
    --text-color: white;
    --nav-height: 60px;
}

body {
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    margin-top: var(--nav-height);
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
}

.contact-content {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    display: flex;
    gap: 40px;
}

.logo-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-container {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-container i {
    font-size: 24px;
    color: white;
}

.contact-text h3 {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-text a, .contact-text p {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.social-media {
    margin-top: 10px;
}

.social-media h3 {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: #FF0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #CC0000;
}

.social-icon i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .contact-info h1 {
        font-size: 1.5rem;
    }

    .logo-section {
        margin-bottom: 0;
    }

    .contact-logo {
        max-width: 200px;
    }
} 