/* General Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #808080;
    color:#333;
}

/* Utility Classes */
.container {
    width: 80%;
    margin: 0 auto;
}

.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    background-color: #222;
    padding: 20px 0;
}

header .logo h1 {
    color: white;
    font-family: 'Roboto', sans-serif;
}

header nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffd700;
}

/* Hero Section */
#hero {
    background: url('https://via.placeholder.com/1600x600') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: white;
    padding: 100px 0;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-button {
    text-decoration: none;
    background-color: #ffd700;
    color: black;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    margin: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e6a900;
}

/* About Section */
#about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2rem;
    color: #000000;
}

/* Gold Prices Section */
#prices h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.prices-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.price-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 48%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 1.5rem;
    color: #000000;
}

/* Buy/Sell Section */
section ol {
    padding-left: 20px;
    text-align: left;
    margin-top: 20px;
}
/* Payment Methods Section */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-method-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.payment-method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.payment-method-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

section ol li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
h3 {
    color: #FFD700;
}

/* Contact Section */
.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.2rem;
}

.contact-info a {
    color: #ffd700;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding:

