/* refundpolicy.css */

/* Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #fff;
}

/* Header Styles */
header {
    background-color: #2c2c2c;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    width: 40px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Adjust the right margin as needed */
}

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #7289da;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Container - Optimize here */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(to bottom, #7289da, #5865f2);
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Content Section */
.content {
    padding: 80px 20px;
}

.content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.content p {
    font-size: 18px;
    color: #d1d1d1;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #7289da;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #5865f2;
  }

/* Footer Styles */
footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 40px 20px 5px; /* Reduced bottom padding */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left,
.footer-right {
    flex-basis: auto;
}

.footer-left h3,
.footer-right h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-left p {
    color: #d1d1d1;
}

.footer-right ul,
.footer-social ul {
    list-style-type: none;
    padding: 0;
}

.footer-right ul li,
.footer-social ul li {
    margin-bottom: 5px;
}

.footer-right a,
.footer-social a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover,
.footer-social a:hover {
    color: #7289da;
}

.footer-social a i {
    font-size: 20px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #2c2c2c;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    nav li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        color: #fff;
    }
}
