﻿body {
    font-family: 'Segoe UI', sans-serif;
}

/* Hero */
.gram-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../Images/gramn.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 90px 20px;
}

    .gram-hero h1 {
        font-size: 40px;
        font-weight: bold;
    }

    .gram-hero h2 {
        margin-top: 10px;
    }

/* Section */
.gram-section {
    padding: 60px 8%;
    background: #f4f6f8;
}

/* Card */
.gram-card {
    background: #fff;
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Green Title Strip */
.gram-title {
    background: #146c3a;
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    padding: 15px;
    letter-spacing: 1px;
}

/* Content */
.gram-content {
    display: flex;
    gap: 30px;
    padding: 30px;
    align-items: center;
}

    .gram-content img {
        width: 300px;
        border-radius: 8px;
    }

.gram-details ul {
    list-style: none;
    padding: 0;
}

.gram-details li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* Responsive */
@media(max-width:768px) {
    .gram-content {
        flex-direction: column;
        text-align: center;
    }

        .gram-content img {
            width: 100%;
        }
}
