body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f3f3f3;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* contact section */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 10px solid #4285f4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-center {
    text-align: center;
    margin-bottom: 40px;
}

.title {
    font-size: 36px;
    font-weight: bold;
    color: #4285f4;
    margin-bottom: 15px;
}

.subtitle {
    color: #666;
    font-size: 18px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* contact info */
.contact-info {
    background-color: #e0f0ff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #4285f4;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

a {
    text-decoration: none;
    color: black;
}

.contact-item:hover {
    transform: translateX(10px);
}

.icon {
    width: 40px;
    height: 40px;
    background-color: #4285f4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.availability {
    background-color: #e0f0ff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}

/* ontact form */
.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
}

textarea {
    resize: vertical;
    height: 120px;
}

button.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #4285f4;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

button.submit-btn:hover {
    background-color: #3367d6;
    scale: 1;
}

.success-message {
    background-color: #d4edda;
    padding: 15px;
    border-radius: 8px;
    color: #155724;
    margin-top: 20px;
}

/* animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}