/* Reset & Base - Compatible Twenty Twenty-Five */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f9f9f9;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    min-height: 100vh;
}

/* Header */
.header {
    text-align: center;
    padding: 30px 0 20px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

/* Info Section */
.info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Form */
.cv-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #0073aa;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    cursor: pointer;
    background: #fafafa;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #666;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: #0073aa;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.submit-btn:hover {
    background: #005a87;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.success-message p {
    font-size: 16px;
    color: #155724;
    font-weight: 600;
    margin: 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0 20px;
    border-top: 2px solid #f0f0f0;
    margin-top: 40px;
}

.footer-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer p {
    margin: 8px 0;
    font-size: 14px;
}

.footer a {
    color: #0073aa;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer svg {
    vertical-align: middle;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .header {
        padding: 20px 0 15px;
    }

    .header h1 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 14px;
    }

    .logo {
        max-width: 150px;
    }

    .info {
        padding: 15px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
        padding: 12px 14px;
    }

    .submit-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Print Styles */
@media print {

    .cv-form,
    .footer {
        display: none;
    }
}