body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 20px;
    color: #333;
}

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px;
}

.profile {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.image-section {
    flex: 1;
    min-width: 300px;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-section {
    flex: 1;
    padding: 30px;
    min-width: 300px;
}

.tag {
    background-color: #ffe8d6;
    color: #d4a373;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

h1 {
    margin: 10px 0;
    color: #2c3e50;
    font-size: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.stat-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    display: block;
}

.stat-value {
    font-weight: bold;
    color: #444;
}

.description {
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.adopt-btn {
    display: block;
    text-align: center;
    background-color: #ff7b54;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.adopt-btn:hover {
    background-color: #e86a43;
}

@media (max-width: 600px) {
    .profile-container { flex-direction: column; }
}

.bottom-left {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.bottom-mid {
    position: relative;
    bottom: 0;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.form-section {
    max-width: 1000px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-section h3 {
    font-size: 1.2rem;
    color: #ff7b54;
    border-bottom: 2px solid #ffe8d6;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #444;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #ff7b54;
    box-shadow: 0 0 8px rgba(255, 123, 84, 0.2);
    background-color: #fff;
}

textarea {
    resize: vertical;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

input[type="number"] {
    width: 100px;
    padding: 10px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff5f0;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff7b54;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}