/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2 {
    margin: 0;
    font-weight: 700;
}

h1 {
    font-size: 28px;
    color: #007bff;
    text-align: left;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    color: #007bff;
    margin-bottom: 15px;
}

/* Content Wrapper */
.content {
    max-width: 1000px;
    margin: auto;
    padding: 30px 20px;
}

/* Card Component */
.card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Text & Lists */
.card p, .card ul {
    font-size: 16px;
    line-height: 1.6;
}

.card ul {
    padding-left: 20px;
}

.card ul li {
    margin-bottom: 8px;
}

/* Forms Styling (Contact Page) */
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 6px rgba(0,123,255,0.2);
}

/* Button Styling */
.btn-submit {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 20px 15px;
    }
    h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .card {
        padding: 20px;
        border-radius: 12px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }
    .btn-submit {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }
    h2 {
        font-size: 18px;
    }
    .card {
        padding: 15px;
        border-radius: 10px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 8px;
    }
    .btn-submit {
        padding: 8px 16px;
        font-size: 13px;
    }
}
