:root {
    --primary-color: #4a6fa5;
    --secondary-color: #25d366;
    --accent-color: #e94c89;
    --text-color: #333;
    --background-color: #f9f9f9;
    --card-background: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-time: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-card {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition-time);
}

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

.icon-container {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card:nth-child(2) .icon-container {
    background-color: var(--secondary-color);
}

.icon {
    width: 40px;
    height: 40px;
    fill: white;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card:nth-child(2) h2 {
    color: var(--secondary-color);
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.contact-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-time);
    display: flex;
    align-items: center;
    margin-top: auto;
}

.contact-card:nth-child(2) .contact-button {
    background-color: var(--secondary-color);
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button-arrow {
    margin-left: 0.5rem;
    transition: transform var(--transition-time);
}

.contact-button:hover .button-arrow {
    transform: translateX(5px);
}

footer {
    text-align: center;
    margin-top: 3rem;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
    }
}

