/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #2c3e50;
    padding: 20px;
    text-align: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
}

/* Main Content Section */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    text-align: justify;
}

/* Tribute Section */
.tribute-section {
    text-align: center;
    margin-bottom: 40px;
}

.tribute-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.tribute-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.tribute-section blockquote {
    font-style: italic;
    color: #555;
    margin: 20px 0;
}

.tribute-section cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}

.content-img {
    width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
}

/* Introduction Section */
.introduction-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.introduction-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Shahid Ganesh Prasad Sharma Section */
.shahid-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.shahid-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Call to Action Section */
.cta-section {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* Contact Information Section */
.contact-section {
    margin-top: 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info {
    background-color: #f4f4f9;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 10px;
    background-color: #34495e;
    color: white;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 10px;
    }

    .tribute-section h2 {
        font-size: 1.8rem;
    }

    .introduction-section h2