@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.header .logo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    display: flex;
    gap: 60px;
    padding: 60px 40px;
    background: #f8f9fa;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    flex: 1;
    max-width: 500px;
}

.contact-title {
    color: #4285F4;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.contact-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.address-text {
    display: flex;
    flex-direction: column;
}

/* Map Section */
.map-section {
    flex: 1;
    max-width: 500px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 4px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    max-width: 280px;
}

.map-info strong {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

.map-info p {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
    margin-bottom: 8px;
}

.map-links {
    display: flex;
}

.map-link {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #4285F4;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

/* Form Section */
.form-section {
    background: #fff;
    padding: 60px 0;
    width: 100%;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-title {
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}

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

.form-row {
    display: flex;
    gap: 16px;
}

.form-input {
    flex: 1;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #4285F4;
}

.form-input::placeholder {
    color: #999;
}

.form-textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #4285F4;
}

.form-textarea::placeholder {
    color: #999;
}

.form-submit {
    background: #4285F4;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 12px 32px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background: #3367D6;
}

.form-submit:active {
    background: #2C5AA0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .contact-section,
    .map-section {
        max-width: 100%;
    }

    .map-container {
        height: 300px;
    }

    .form-section {
        padding: 40px 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-title {
        font-size: 28px;
    }

    .form-title {
        font-size: 24px;
    }

    .header {
        padding: 15px 0;
    }

    .header .logo {
        padding: 0 20px;
    }

    .form-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 24px;
    }

    .form-title {
        font-size: 20px;
    }

    .contact-item {
        font-size: 14px;
    }

    .map-overlay {
        position: static;
        margin-top: 20px;
        margin-left: 0;
        margin-bottom: 0;
    }
}

/* Footer */
.footer {
    background: #4285F4;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}