/* Login Page Styles */
.login-section {
    position: relative;
    min-height: calc(100vh - 140px); /* 헤더와 푸터 높이 제외 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../img/content_sam.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    z-index: 1;
}
.footer{
    margin-top: 0;
}
.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.login-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.login-form {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.login-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.login-form-content {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: #FBB03B;
    background: rgba(60, 60, 60, 0.9);
    box-shadow: 0 0 0 2px rgba(251, 176, 59, 0.2);
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: #FBB03B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.login-btn:hover {
    background: #e09d2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 176, 59, 0.3);
}

.login-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.login-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #FBB03B;
}

.login-links .divider {
    color: rgba(255, 255, 255, 0.5);
}

.membership-section {
    text-align: center;
}

.membership-text {
    color: white;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.signup-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Login Page Responsive */
@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
    }
    
    .login-form {
        padding: 2rem 1.5rem;
    }
    
    .login-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .form-input {
        padding: 0.8rem;
    }
    
    .login-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        min-height: calc(100vh - 120px);
    }
    
    .login-form {
        padding: 1.5rem 1rem;
    }
    
    .login-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .login-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .login-links .divider {
        display: none;
    }
}

/* ID Find Page Styles */
.id-find-section {
    position: relative;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.id-find-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.id-find-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.id-find-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 500px;
    padding: 2rem;
}

.id-find-form {
    background: rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.id-find-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.id-find-form-content {
    margin-bottom: 0;
}

.form-label {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.required {
    color: #FBB03B;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: #FBB03B;
    background: rgba(60, 60, 60, 0.9);
    box-shadow: 0 0 0 2px rgba(251, 176, 59, 0.2);
}

.confirm-btn {
    width: 100%;
    padding: 1rem;
    background: #FBB03B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.confirm-btn:hover {
    background: #e09d2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 176, 59, 0.3);
}

/* ID Find Page Responsive */
@media (max-width: 768px) {
    .id-find-container {
        padding: 1rem;
    }
    
    .id-find-form {
        padding: 2rem 1.5rem;
    }
    
    .id-find-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .form-input {
        padding: 0.8rem;
    }
    
    .confirm-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .id-find-section {
        min-height: calc(100vh - 120px);
    }
    
    .id-find-form {
        padding: 1.5rem 1rem;
    }
    
    .id-find-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

/* Membership Type Selection Styles */
.membership-type-section {
    position: relative;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.membership-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../img/content_sam.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    z-index: 1;
}

.membership-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.membership-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.membership-content {
    text-align: center;
    color: white;
}

.membership-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.membership-disclaimer {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 3rem 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.membership-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.membership-btn {
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 280px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.membership-btn:hover {
    border-color: #FBB03B;
    background: rgba(40, 40, 40, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.membership-btn:active {
    transform: translateY(-2px);
}

.btn-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.membership-btn:hover .btn-icon {
    background: rgba(251, 176, 59, 0.2);
    transform: scale(1.1);
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.doctor-btn .btn-icon svg {
    width: 32px;
    height: 32px;
}

.corporate-btn .btn-icon svg {
    width: 32px;
    height: 32px;
}

/* Membership Type Responsive */
@media (max-width: 768px) {
    .membership-container {
        padding: 1rem;
    }
    
    .membership-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .membership-disclaimer {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .membership-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .membership-btn {
        min-width: 100%;
        max-width: 320px;
        padding: 1.5rem 2rem;
    }
    
    .btn-icon {
        width: 56px;
        height: 56px;
    }
    
    .btn-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .membership-type-section {
        min-height: calc(100vh - 120px);
    }
    
    .membership-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .membership-disclaimer {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .membership-btn {
        padding: 1.2rem 1.5rem;
    }
    
    .btn-icon {
        width: 48px;
        height: 48px;
    }
    
    .doctor-btn .btn-icon svg,
    .corporate-btn .btn-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Doctor Signup Page Styles */
.signup-section {
    position: relative;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 0;
}

.signup-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.signup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.signup-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 500px;
    padding: 0 2rem;
}

.signup-form {
    background: rgba(40, 40, 40, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.signup-form-content {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.required {
    color: #FBB03B;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: #FBB03B;
    background: rgba(60, 60, 60, 0.9);
    box-shadow: 0 0 0 2px rgba(251, 176, 59, 0.2);
}

/* File Upload Styles */
.file-upload-container {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(60, 60, 60, 0.8);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 80px;
}

.file-upload-label:hover {
    border-color: #FBB03B;
    background: rgba(60, 60, 60, 0.9);
}

.file-upload-label.dragover {
    border-color: #FBB03B;
    background: rgba(251, 176, 59, 0.1);
}

.file-upload-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.file-upload-title {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.file-upload-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.file-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(251, 176, 59, 0.2);
    border-radius: 6px;
    color: #FBB03B;
    flex-shrink: 0;
}

.file-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.file-name {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.file-size {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.file-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.file-remove:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
}

.terms-section {
    margin: 2rem 0;
}

.terms-all {
    margin-bottom: 1rem;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.terms-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-item:last-child {
    border-bottom: none;
}

.terms-checkbox input[type="checkbox"],
.terms-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark,
.terms-item input[type="checkbox"]:checked + .checkmark {
    background: #FBB03B;
    border-color: #FBB03B;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after,
.terms-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.terms-text {
    color: white;
    font-size: 0.95rem;
    flex: 1;
}

.terms-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-left: auto;
}

.terms-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.next-btn {
    width: 100%;
    padding: 1rem;
    background: #6b7280;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.next-btn:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.next-btn:active {
    transform: translateY(0);
}

/* Doctor Signup Responsive */
@media (max-width: 768px) {
    .signup-container {
        padding: 0 1rem;
    }
    
    .signup-form {
        padding: 1.5rem;
    }
    
    .form-input {
        padding: 0.8rem;
    }
    
    .next-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .signup-section {
        min-height: calc(100vh - 120px);
        padding: 1rem 0;
    }
    
    .signup-form {
        padding: 1rem;
    }
    
    .terms-text {
        font-size: 0.9rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
}

/* Ad Inquiry Page Styles */
.ad-inquiry-section {
    position: relative;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ad-inquiry-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ad-inquiry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.ad-inquiry-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.ad-inquiry-form {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ad-inquiry-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ad-inquiry-description {
    color: white;
    font-size: 1rem;
    text-align: center;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
    opacity: 0.9;
}

.ad-inquiry-form-content {
    margin-bottom: 0;
}

.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    resize: none;
    min-height: 100px;
    font-family: inherit;
    margin-top: 0.5rem;
}

.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-textarea:focus {
    outline: none;
    border-color: #FBB03B;
    background: rgba(60, 60, 60, 0.9);
    box-shadow: 0 0 0 2px rgba(251, 176, 59, 0.2);
}

.form-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.date-range-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.date-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.date-icon {
    position: absolute;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
    pointer-events: none;
}

.date-input {
    padding-left: 3rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;

}

.date-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.file-upload-container {
    margin-top: 0.5rem;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
}

.file-upload-label:hover {
    border-color: #FBB03B;
    background: rgba(60, 60, 60, 0.9);
}

.file-upload-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.file-upload-title {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.file-upload-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.file-add-btn {
    background: #FBB03B;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.file-add-btn:hover {
    background: #e09d2a;
    transform: translateY(-1px);
}

.terms-agreement {
    margin-top: 0.5rem;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    padding: 1rem;
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.terms-checkbox:hover {
    border-color: #FBB03B;
    background: rgba(60, 60, 60, 0.9);
}

.terms-checkbox input[type="checkbox"] {
    display: none;
}

.terms-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #FBB03B;
    border-color: #FBB03B;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.terms-text {
    color: white;
    font-size: 1rem;
    flex: 1;
}

.terms-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-left: auto;
    cursor: pointer;
    transition: color 0.3s ease;
}

.terms-arrow:hover {
    color: #FBB03B;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #FBB03B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #e09d2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 176, 59, 0.3);
}

/* Ad Inquiry Responsive */
@media (max-width: 768px) {
    .ad-inquiry-container {
        padding: 1rem;
    }
    
    .ad-inquiry-form {
        padding: 2rem 1.5rem;
    }
    
    .ad-inquiry-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .ad-inquiry-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .date-range-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .date-separator {
        display: none;
    }
    
    .date-input-wrapper {
        width: 100%;
    }
    
    .file-upload-label {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .file-upload-text {
        order: 1;
    }
    
    .file-add-btn {
        order: 2;
    }
}

@media (max-width: 480px) {
    .ad-inquiry-section {
        min-height: calc(100vh - 120px);
    }
    
    .ad-inquiry-form {
        padding: 1.5rem 1rem;
    }
    
    .ad-inquiry-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .ad-inquiry-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.8rem;
    }
    
    .terms-checkbox {
        padding: 0.75rem;
    }
    
    .terms-text {
        font-size: 0.9rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
}
