/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2d2f36;
    color: white;
    padding: 15px 10%;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 30px; /* Adjust width to align all numbers */
    text-align: center;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    background: #e9ecef;
    position: relative;
}

/* Hero Icons */
.hero-icons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 80px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    padding: 0 10%;
}

.hero-icon {
    width: 80px; /* Adjust size */
    height: auto;
}

.left-icon {
    margin-left: -40%;
}

.right-icon {
    margin-right: -40%;
}

/* Hero Text */
.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #2d2f36;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
}

/* Hero Image */
.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    padding: 50px 10%;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    color: #2d2f36;
    margin-bottom: 20px;
}

.section ul {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: auto;
}

.section ul li {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step {
    font-size: 1.2rem;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 60%;
}

/* Footer */
footer {
    text-align: center;
    background: #2d2f36;
    color: white;
    padding: 15px;
}

.btn-box {
    text-align: center; /* Centers the buttons */
    margin-top: 20px;
    display: flex;
    justify-content: center; /* Centers buttons horizontally */
    gap: 15px; /* Adds space between buttons */
}

.btn1 {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff6a00, #ee0979);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    width: 220px; /* Ensure uniform button width */
    text-align: center; /* Centers text inside the button */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn1:hover {
    background: linear-gradient(45deg, #ee0979, #ff6a00);
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
