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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6; /* Classic grayish-blue background */
    padding-bottom: 2rem;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header h1 {
    font-size: 1.5rem;
    color: #4a90e2; /* Classic blue for domain names */
    text-transform: lowercase;
}

main {
    margin-top: 2rem;
}

.status-box {
    background-color: #fff9e6; /* Noticeable yellow banner */
    border: 1px solid #ffeeba;
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.status-icon svg {
    color: #f0ad4e;
}

.status-text h2 {
    font-size: 1.25rem;
    color: #856404;
    margin-bottom: 0.25rem;
}

.status-text p {
    color: #856404;
    font-size: 0.95rem;
}

.inquiry-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.inquiry-card, .info-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.inquiry-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.inquiry-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.btn-primary {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.btn-primary:hover {
    background-color: #357abd;
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4a90e2;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 0.5rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f4f8;
    font-size: 0.9rem;
}

.info-card li:last-child {
    border-bottom: none;
}

.agent-info {
    font-size: 0.9rem;
}

footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #999;
}

footer a {
    color: #666;
    text-decoration: none;
    margin-right: 0.5rem;
}

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

.feedback-msg {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.feedback-msg.success {
    background-color: #d4edda;
    color: #155724;
}

.feedback-msg.error {
    background-color: #f8d7da;
    color: #721c24;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .inquiry-section {
        grid-template-columns: 1fr;
    }
}
