/* General Reset and Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #121212;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #ff6b81;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* Header */
header {
    background-color: #1f1f1f;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b81;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6b81;
}

/* Hero Section */
.hero {
    background: url('your-hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #ff6b81;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff4757;
}

/* Checker Section */
.checker-container {
    padding: 50px 0;
}

.checker-form h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.checker-form label {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.checker-form input[type="text"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 2px solid #ff6b81;
    background-color: #1f1f1f;
    color: #fff;
    font-size: 16px;
}

.checker-form .cta-button {
    width: 100%;
}

/* Info Section */
.info-section {
    padding: 50px 0;
}

.info-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer p {
    font-size: 14px;
}
