@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    background-color: #f5f5f5;
}

header {
    background-color: white;
    height: 80px;
    width: 100%;
    z-index: 10;
    position: fixed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logo {
    float: left;
    padding-left: 30px;
    padding-top: 10px;
}

.header-logo > img {
    width: 50px;
    height: auto;
}

.header-list ul {
    float: right;
    margin-right: 20px;
}

.header-list ul li {
    display: inline-block;
    padding: 0;
    margin-left: 20px;
}

.header-list ul li a {
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 30px 15px;
    transition: all 0.3s ease;
}

.header-list ul li a:hover, .header-list ul li a.active {
    background-color: #dc143c;
    color: white;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 60px;
    background: linear-gradient(45deg, rgba(220,20,60,0.05), rgba(0,139,139,0.1));
}

.contact-box {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.left {
    background: url(./Images/help.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}

.left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 20, 60, 0.2);
}

.right {
    padding: 40px;
}

h2 {
    position: relative;
    font-size: 28px;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #333;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 60px;
    border-radius: 2px;
    background-color: #dc143c;
}

.help-intro {
    margin-bottom: 25px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.field {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    background-color: #f9f9f9;
    padding: 12px 15px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.field:hover, .field:focus {
    background-color: #fff;
    border-color: #dc143c;
    box-shadow: 0 0 5px rgba(220, 20, 60, 0.2);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.btn {
    width: 100%;
    padding: 15px;
    background-color: #dc143c;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn:hover {
    background-color: #b01030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.emergency-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.emergency-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.emergency-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.emergency-contact a {
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.emergency-contact a:hover {
    color: #008B8B;
    text-decoration: underline;
}

.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section h2:after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #dc143c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

footer {
    background: #111;
    color: #fff;
    padding-top: 40px;
    position: relative;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 20px 40px;
}

.footer-content h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.footer-content p {
    max-width: 800px;
    line-height: 1.6;
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.socials {
    display: flex;
    align-items: center;
}

.sci {
    display: flex;
    list-style: none;
}

.sci li {
    margin: 0 15px;
}

.sci li a {
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.sci li a:hover {
    transform: translateY(-10px);
}

.sci li:nth-child(1) a:hover {
    color: #3b5998;
}

.sci li:nth-child(2) a:hover {
    color: #e1306c;
}

.sci li:nth-child(3) a:hover {
    color: #f0e68c;
}

.siteFooterBar {
    padding: 20px;
    text-align: center;
    background: #000;
    color: #9b9b9b;
    font-size: 14px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .contact-box {
        grid-template-columns: 1fr;
    }
    
    .left {
        height: 200px;
    }
    
    .header-logo {
        padding-left: 15px;
    }
    
    .header-list ul li {
        margin-left: 5px;
    }
    
    .header-list ul li a {
        padding: 30px 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    header {
        height: auto;
    }
    
    .header-logo {
        float: none;
        text-align: center;
        padding: 10px 0;
    }
    
    .header-list ul {
        float: none;
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0 10px 10px;
    }
    
    .header-list ul li a {
        padding: 10px;
        font-size: 12px;
    }
    
    .right {
        padding: 30px 20px;
    }
    
    .container {
        padding-top: 150px;
    }
}