
:root {
    --primary-color: #CDA274;
    --secondary-color: #292F36;
    --light-bg: #F4F0EC;
    --text-color: #4D5053;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #F9F9F9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Serif Display', serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}


.header {
    padding: 20px 0;
    background-color: var(--white);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
}

.nav-menu ul {
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    font-size: 18px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.search-icon {
    font-size: 18px;
    color: var(--secondary-color);
    cursor: pointer;
}
li{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h1{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
a{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h3{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
span{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h4{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.hero {
    position: relative;
    background-image: url('/img/Pricing\ Main\ Image.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.about-us-overlay {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px 70px;
    border-radius: 20px;
    text-align: center;
}
.Main-H1{
    color: black;
}
.about-us-overlay h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 18px;
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.breadcrumb a {
    color: var(--white);
}

.pricing-section {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 50px 30px 30px;
    position: relative;
}

.pricing-card.featured {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card-header {
    margin-bottom: 30px;
}

.pricing-card-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.price {
    font-size: 85px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    position: relative;
}

.price .dollar {
    font-size: 20px;
    position: absolute;
    top: 10px;
    left: -15px;
}

.price .period {
    font-size: 20px;
    font-weight: normal;
    color: var(--text-color);
}

.most-popular {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 14px;
    padding: 5px 20px;
    display: inline-block;
    position: absolute;
    top: 390px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 18px;
    margin-top: 20px;
}

.pricing-card-content {
    margin-bottom: 40px;
}

.pricing-card-content ul li {
    margin-bottom: 15px;
    color: var(--text-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn i {
    margin-left: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-dark {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--primary-color);
}

.footer {
    background-color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-company p {
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-nav h4, .footer-contact h4 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.footer-nav ul li {
    margin-bottom: 15px;
}

.footer-nav ul li a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #E5E5E5;
    font-size: 14px;
}


@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .price {
        font-size: 60px;
    }
}