body {
    background-color: #f5f7fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 20px 0;
    background-color: #263a46;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 40px;
    text-align: center;
}

.hero h1 {
    margin-bottom: 24px;
}


.hero h1 span {
    color: #B08747;
    font-style: italic;
}

.hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}




/* Pricing Cards */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover,
.card:focus {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card.popular {
    border-top: 4px solid #ffcc5c;
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: #ffcc5c;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.starter .card-icon {
    background-color: #e6eeff;
    color: #5b68e4;
}

.pro .card-icon {
    background-color: #fff5e6;
    color: #ffaa33;
}

.enterprise .card-icon {
    background-color: #e6f9ff;
    color: #33aaff;
}

.card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card .subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.price {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}

.feature svg {
    flex-shrink: 0;
    margin-right: 10px;
    margin-top: 3px;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    a {
        display: block;
        ;
    }
}