body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1;
    color: #000000;
}

.contact-container {
    padding: 30px;
    position: relative;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

#responseMessage {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none;
}

.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* Success Message Styles */
#successMessage {
    text-align: center;
    padding: 30px;
}

.success-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.success-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.success-header svg {
    flex-shrink: 0;
}

.success-box h2 {
    color: #4CAF50;
    margin: 0;
    font-size: 24px;
}

.success-box p {
    color: #495057;
    margin-bottom: 25px;
    font-size: 16px;
}

#sendAgainBtn {
    background-color: #4CAF50;
    max-width: 200px;
    margin: 0 auto;
}

#sendAgainBtn:hover {
    background-color: #3d8b40;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .success-box {
        padding: 20px;
    }
    
    .success-header {
        flex-direction: column;
        gap: 5px;
    }
    
    .success-header svg {
        margin-bottom: 5px;
    }
}