body {
    font-family: 'Raleway', sans-serif;
    background-color: #f4f9f8;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #b2dfdb;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: rotate(360deg);
}

.company-name {
    font-family: 'Tangerine', serif;
    font-size: 2.5em;
    color: #00796b;
    margin: 0;
    transition: color 0.3s, transform 0.3s;
}

.company-name:hover {
    color: #004d40;
    transform: scale(1.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    font-size: 1.2em;
    color: #004d40;
    font-weight: 600;
    padding: 10px;
    transition: color 0.3s, border-bottom 0.3s, background-color 0.3s;
    border-radius: 4px;
}

nav a:hover {
    color: #00796b;
    border-bottom: 2px solid #00796b;
    background-color: rgba(0, 121, 107, 0.1);
}

/* Help Container Styling */
.help-container {
    margin: 50px auto;
    padding: 30px;
    max-width: 85%;
    background-color: #e0f7fa;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    animation: slideIn 1s ease-in-out;
}

.help-container h1.page-title {
    font-size: 2.5em;
    color: #004d40;
    text-align: center;
}

.help-container p {
    font-size: 1.2em;
    color: #555;
    text-align: center;
}

/* Contact Section Styling */
.contact-section {
    margin-top: 30px;
}

.contact-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-container:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-container h1 {
    font-size: 2.2em;
    color: #00796b;
}

.contact-container p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

button[type="submit"] {
    background-color: #00796b;
    color: white;
    padding: 12px 25px;
    font-size: 1.2em;
    border: none;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out;
}

button[type="submit"]:hover {
    background-color: #004d40;
}

/* Resource Sections Styling */
.resource {
    margin-top: 50px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.resource:hover {
    transform: translateY(-10px);
}

.resource h2 {
    color: #00796b;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.resource p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 15px;
}

.resource ul {
    list-style: none;
    padding-left: 0;
}

.resource ul li {
    margin: 10px 0;
}

.resource ul li a {
    color: #004d40;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.resource ul li a:hover {
    color: #00796b;
}

/* Social Media Icons Container */
.social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px; /* Space between icons */
}

/* Common Styles for all Social Media Links */
.social-icons a {
    font-size: 24px;
    padding: 10px;
    border-radius: 50%; /* Circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: #fff;
}

/* Facebook Icon */
.social-icons .facebook {
    background-color: #1877F2; /* Facebook blue */
}

.social-icons .facebook:hover {
    background-color: #145dbf; /* Darker Facebook blue on hover */
}

/* Instagram Icon */
.social-icons .instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); /* Instagram gradient */
}

.social-icons .instagram:hover {
    transform: scale(1.1); /* Slightly increase the size on hover */
}

/* WhatsApp Icon */
.social-icons .whatsapp {
    background-color: #25D366; /* WhatsApp green */
}

.social-icons .whatsapp:hover {
    background-color: #1da851; /* Darker WhatsApp green on hover */
}

/* Icon Font Size */
.social-icons i {
    font-size: 24px;
    color: #fff;
}


/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

