
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #000;
}

.intro-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-address {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

#map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 10px;
}

.contact-item {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

    .contact-item a {
        color: #e91e8c;
        text-decoration: none;
        font-weight: 500;
    }

        .contact-item a:hover {
            text-decoration: underline;
        }

.survey-section {
    margin-top: 80px;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 8px;
}

    .survey-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
        color: #000;
    }

    .survey-section .description {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
    }

#survey-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sv_main.sv_default_css {
    font-family: inherit;
}

.sv_q_container {
    margin-bottom: 30px;
}

.sv_q_title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.sv_row {
    display: flex;
    gap: 15px;
}

.sv_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv_q_checkbox input[type="checkbox"],
.sv_q_radiogroup input[type="radio"],
.sv_q_select select {
    cursor: pointer;
}

.sv_q_select select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.sv_q_text input[type="text"],
.sv_q_text input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

    .sv_q_text input[type="text"]:focus,
    .sv_q_text input[type="email"]:focus,
    .sv_q_select select:focus {
        outline: none;
        border-color: #e91e8c;
        box-shadow: 0 0 0 2px rgba(233, 30, 140, 0.1);
    }

.sv_footer {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

.sv_button {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.sv_default_btn {
    background: #e91e8c;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .sv_default_btn:hover {
        background: #cc1a77;
    }

.success-message {
    display: none;
    padding: 20px;
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    color: #0c4a6e;
    margin-bottom: 20px;
    text-align: center;
}

    .success-message.show {
        display: block;
    }

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 8px;
}

    .cta-section h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #000;
    }

    .cta-section p {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
    }

.cta-button {
    display: inline-block;
    background: #e91e8c;
    color: white;
    padding: 14px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

    .cta-button:hover {
        background: #cc1a77;
    }

    .cta-button::after {
        content: ' →';
    }

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h1 {
        font-size: 32px;
    }

    .intro-text {
        font-size: 16px;
    }

    #map {
        height: 300px;
    }
}


