/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background-color: #f4f9fc; /* Light blue background */
    color: #333; /* Dark text for readability */
    line-height: 1.6;
    font-size: 16px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
header {
    background-color: #007acc; /* Blue background */
    color: white;
    text-align: center;
    padding: 50px 20px;
}

header .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

header .cta-button {
    background-color: #00b894; /* Green background */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

header .cta-button:hover {
    background-color: #009874; /* Darker green for hover */
}

/* About Section */
.about {
    background-color: #ffffff; /* White background */
    padding: 40px 20px;
    margin-top: 20px;
    text-align: center;
}

.about h2 {
    color: #007acc; /* Blue text */
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 20px;
}

.about ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.about li {
    margin: 10px 0;
    color: #00b894; /* Green text for bullet points */
}

.about .cta-button {
    background-color: #007acc; /* Blue background */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.about .cta-button:hover {
    background-color: #005fa3; /* Darker blue for hover */
}

/* Featured Collection Section */
.featured-collection {
    background-color: #e6f7ff; /* Light blue background */
    padding: 40px 20px;
    text-align: center;
}

.featured-collection h2 {
    color: #007acc;
    margin-bottom: 20px;
}

.card {
    display: inline-block;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    text-align: left;
    width: 300px;
}

.card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.card h3 {
    color: #333;
    margin-bottom: 10px;
}

.card p {
    color: #00b894;
    font-weight: bold;
    margin-bottom: 15px;
}

.card .cta-button {
    background-color: #00b894; /* Green background */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.card .cta-button:hover {
    background-color: #009874; /* Darker green for hover */
}

/* Trade and Sell Section */
.trade-sell {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.trade-sell h2 {
    color: #007acc;
    margin-bottom: 20px;
}

.trade-sell p {
    margin-bottom: 20px;
}

.trade-sell .cta-button {
    background-color: #007acc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.trade-sell .cta-button:hover {
    background-color: #005fa3;
}

/* Events Section */
.events {
    background-color: #e6f7ff;
    padding: 40px 20px;
    text-align: center;
}

.events h2 {
    color: #007acc;
    margin-bottom: 20px;
}

.events h3 {
    color: #00b894;
    margin-bottom: 10px;
}

.events p {
    margin-bottom: 20px;
}

.events .cta-button {
    background-color: #00b894;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.events .cta-button:hover {
    background-color: #009874;
}

/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.testimonials h2 {
    color: #007acc;
    margin-bottom: 20px;
}

.testimonial {
    margin-bottom: 20px;
    color: #333;
    font-style: italic;
}

.testimonial span {
    display: block;
    color: #00b894;
    font-weight: bold;
    margin-top: 5px;
}

.testimonials .cta-button {
    background-color: #007acc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.testimonials .cta-button:hover {
    background-color: #005fa3;
}

/* Contact Section */
.contact {
    background-color: #e6f7ff;
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    color: #007acc;
    margin-bottom: 20px;
}

.contact p {
    margin-bottom: 10px;
}

.contact .cta-button {
    background-color: #00b894;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact .cta-button:hover {
    background-color: #009874;
}

/* Footer Section */
footer {
    background-color: #007acc;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #00b894;
}

.social-media a img {
    width: 30px;
    margin: 0 10px;
    transition: opacity 0.3s;
}

.social-media a img:hover {
    opacity: 0.8;
}
