* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --btn-gradient-start: #823BD9;
    --btn-gradient-end: #451F73;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #000000;
    margin: 0 auto;
}

.contact-section {
    background-color: black;
    padding: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 2vw;
    width: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-header {
    text-align: center;
    margin-bottom: 1.5vw;
}

.contact-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1vw;
}

.contact-logo-image {
    height: 5rem;
    width: auto;
}

.contact-title {
    font-size: clamp(2.5rem, 3vw, 3vw);
    font-weight: 800;
    color: #000000;
}

.contact-subtitle {
    font-size: clamp(0.9rem, 1vw, 1vw);
    color: #000000;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.form-row {
    display: flex;
    gap: 1.5vw;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    flex: 1;
}

.form-label {
    font-size: clamp(0.85rem, 0.9vw, 0.9vw);
    font-weight: 600;
    color: #000000;
}

.required-asterisk {
    color: #FF0000;
    margin-left: 0.2rem;
}

.form-input,
.form-textarea,
.form-select {
    padding: 0.8vw 1vw;
    border: 1px solid #CCCCCC;
    border-radius: 0.5rem;
    font-size: clamp(0.85rem, 0.9vw, 0.9vw);
    font-family: 'Inter', Arial, sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--btn-gradient-start);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1vw center;
    padding-right: 3vw;
}

.agreement-text {
    font-size: clamp(0.75rem, 0.8vw, 0.8vw);
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.agreement-link {
    color: #0066CC;
    font-weight: 600;
}

.agreement-link:hover {
    text-decoration: underline;
}


.required-note {
    font-size: clamp(0.75rem, 0.8vw, 0.8vw);
    color: #FF0000;
    margin: 0;
}

.contact-submit {
    width: 100%;
    padding: 1vw 2vw;
    font-size: clamp(1rem, 1.1vw, 1.1vw);
    background: linear-gradient(to bottom, var(--btn-gradient-start), var(--btn-gradient-end));
    color: white;
    border: none;
    border-radius: 1.8125rem;
    font-weight: bold;
    cursor: pointer;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .contact-section {
        padding: 6vw 4vw;
    }
    
    .contact-container {
        padding: 4vw 5vw;
    }
    
    .contact-form {
        gap: 2vw;
    }
    
    .form-row {
        gap: 2vw;
    }

    .contact-container{
        width: 70%;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 8vw 4vw;
        min-height: auto;
    }
    
    .contact-container {
        padding: 6vw 5vw;
        border-radius: 1.5rem;
        width:90%;
    }
    
    .contact-header {
        margin-bottom: 4vw;
    }

    .contact-logo{
        margin-bottom: 3vw;
    }
    
    .contact-logo-image {
        height: 5rem;
    }
    
    .contact-title {
        font-size: clamp(3rem, 6vw, 6vw);
        margin-bottom: 2vw;
    }
    
    .contact-subtitle {
        font-size: clamp(0.85rem, 3.5vw, 3.5vw);
    }
    
    .contact-form {
        gap: 4vw;
    }
    
    .form-row {
        flex-direction: column;
        gap: 4vw;
    }
    
    .form-group {
        gap: 1.5vw;
    }
    
    .form-label {
        font-size: clamp(0.9rem, 3.5vw, 3.5vw);
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 3vw 4vw;
        font-size: clamp(0.9rem, 3.5vw, 3.5vw);
        border-radius: 0.8rem;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-select {
        padding-right: 10vw;
        background-position: right 4vw center;
    }
    
    .agreement-text {
        font-size: clamp(0.8rem, 3vw, 3vw);
    }
    
    .required-note {
        font-size: clamp(0.8rem, 3vw, 3vw);
    }
    
    .contact-submit {
        padding: 4vw 6vw;
        font-size: clamp(1rem, 4vw, 4vw);
        border-radius: 0.8rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .contact-container {
        padding: 8vw 6vw;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 0.85rem;
    }

    .contact-logo-image {
        height: 25vw;
    }
}


