body {
    background-color: #16a085;
    margin: 0;
    padding: 0;
}

/* Header Section */
.site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: 40px 0;
    border-bottom: 3px solid rgba(22, 160, 133, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-title-link {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title-link:hover {
    color: #16a085;
    text-decoration: none;
}

/* Content Section */
.site-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 50px 0;
    min-height: 200px;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.content-icon {
    font-size: 2.5rem;
    color: #16a085;
    flex-shrink: 0;
    margin-top: 5px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin: 0;
    flex: 1;
}

/* Footer Section */
.site-footer {
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.3) 0%, rgba(22, 160, 133, 0.1) 100%);
    padding: 30px 0;
    border-top: 2px solid rgba(22, 160, 133, 0.4);
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-icon {
    font-size: 1.8rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.footer-text {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0;
}

.footer-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #c0392b;
    text-decoration: underline;
}
