body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #333;
    text-align: center;
}

.hero {
    background-color: #1c6b45;
    color: white;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0;
}

.hero p {
    margin-top: 10px;
    font-size: 1.2rem;
}

.description {
    max-width: 700px;
    margin: 40px auto 20px auto;
    padding: 0 20px;
}

.description h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.description p {
    font-size: 1rem;
    line-height: 1.6;
}

.price-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.price-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.fish-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.fish-row:last-child {
    border-bottom: none;
}

.fish-row img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.fish-name {
    flex: 1;
    text-align: left;
    font-weight: 500;
    margin-left: 20px;
}

.fish-price {
    font-weight: 600;
    margin-right: 20px;
}

.btn-add {
    background-color: #1c6b45;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-add:hover {
    background-color: #145234;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-main {
    background-color: #1c6b45;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-main:hover {
    background-color: #145234;
}

.btn-secondary {
    background: white;
    border: 1px solid #ccc;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

footer {
    margin-top: 40px;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
}
