/* style.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #E2E2E2;
    color: #333;
}

header {
    background: #5A1AFF;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 5px;
}

h1 {
    margin: 0;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #263179;
    border-bottom: 2px solid #263179;
    padding-bottom: 5px;
}

ul {
    margin: 10px 0;
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #263179;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    main {
        padding: 10px;
    }
}

}

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


/* style.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #E2E2E2;
    color: #333;
}

header {
    background: #3015E1;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 5px;
}

h1 {
    margin: 0;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #263179;
    border-bottom: 2px solid #263179;
    padding-bottom: 5px;
}

ul {
    margin: 10px 0;
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #3015E1;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    main {
        padding: 10px;
    }
}

}

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light gray background */
    color: #333; /* Dark text color */
    line-height: 1.6; /* Improved line height for readability */
}

.support-section {
    max-width: 800px; /* Maximum width of the support section */
    margin: 20px auto; /* Centered with margin */
    padding: 20px; /* Padding around the content */
    background: #fff; /* White background for the section */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.support-title {
    text-align: center; /* Centered title */
    margin-bottom: 20px; /* Space below the title */
    font-size: 2em; /* Title size */
    color: #5A1AFF; /* Blue color for the title */
}

.support-description {
    text-align: center; /* Centered description */
    margin-bottom: 20px; /* Space below the description */
    font-size: 1.2em; /* Description size */
}

.contact-info {
    display: flex; /* Flexbox for layout */
    flex-direction: column; /* Column layout */
    gap: 15px; /* Space between items */
}

.contact-item {
    display: flex; /* Flexbox for contact items */
    align-items: center; /* Centered items vertically */
    padding: 10px; /* Padding inside contact items */
    border: 1px solid #BBBBBB; /* Light gray border */
    border-radius: 5px; /* Rounded corners for items */
    transition: background 0.3s; /* Smooth background transition */
    background: #f9f9f9; /* Light background for contact items */
}

.contact-item:hover {
    background: #e9ecef; /* Change background on hover */
}

.icon {
    width: 30px; /* Fixed width for icons */
    height: 30px; /* Fixed height for icons */
    margin-right: 10px; /* Space between icon and text */
}

a {
    text-decoration: none; /* Remove underline from links */
    color: #0074EF; /* Blue color for links */
    font-size: 1em; /* Standard font size for links */
    transition: color 0.3s; /* Smooth color transition */
}

a:hover {
    color: #0056b3; /* Darker shade on hover */
    text-decoration: underline; /* Underline on hover */
}

/* Responsive Design */
@media (max-width: 600px) {
    .contact-info {
        flex-direction: column; /* Stack items vertically on small screens */
    }

    .support-title {
        font-size: 1.5em; /* Smaller title on mobile */
    }

    .support-description {
        font-size: 1em; /* Smaller description on mobile */
    }
}
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
