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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    margin: 0 auto;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1;
}

.header {
    background: #c2940f;
    padding: 30px;
    text-align: center;
    color: white;
}

.header .logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.header h1 {
    font-size: 28px;
    font-weight: 600;
}

.content {
    padding: 40px 60px;
    min-height: 400px;
    max-width: 1400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #c2940f;
    box-shadow: 0 0 0 3px rgba(194, 148, 15, 0.1);
}

.btn {
    background: #c2940f;
    color: white;
    padding: 14px 28px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn:hover {
    background: #a87d0c;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: white;
    color: #c2940f;
    border: 2px solid #c2940f;
}

.btn-secondary:hover {
    background: #f8f8f8;
}

.talent-card {
    background: #fafafa;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.talent-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.talent-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #c2940f;
}

.talent-info h2 {
    color: #c2940f;
    font-size: 26px;
    margin-bottom: 8px;
}

.talent-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.meta-item svg {
    width: 16px;
    height: 16px;
}

.social-link {
    color: #c2940f;
    text-decoration: none;
    font-weight: 500;
}

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

.rate-section {
    margin-bottom: 30px;
}

.rate-section h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffcb33;
    display: inline-block;
}

.rate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: white;
    border-left: 3px solid #c2940f;
    border: 1px solid #e0e0e0;
}

.rate-item .label {
    color: #555;
    font-size: 14px;
}

.rate-item .price {
    color: #c2940f;
    font-weight: 600;
    font-size: 14px;
}

.talents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.talent-mini-card {
    background: #fafafa;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #e0e0e0;
}

.talent-mini-card:hover {
    transform: translateY(-3px);
    border-color: #c2940f;
    box-shadow: 0 4px 12px rgba(194, 148, 15, 0.2);
}

.talent-mini-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border: 3px solid #c2940f;
}

.talent-mini-card h3 {
    color: #c2940f;
    font-size: 20px;
    margin-bottom: 8px;
}

.talent-mini-card .location {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c2940f;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 10px 15px;
    transition: all 0.3s;
    border: 1px solid #c2940f;
}

.back-btn:hover {
    background: #f8f8f8;
}

.hidden {
    display: none;
}

.footer {
    background: #333;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
}

.footer a {
    color: #ffcb33;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }

    .talent-header {
        flex-direction: column;
        text-align: center;
    }

    .talent-meta {
        justify-content: center;
    }

    .rate-grid {
        grid-template-columns: 1fr;
    }

    .talents-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}