* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d5016;
    background: linear-gradient(135deg, #f8faf7 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 2rem;
}

/* Header Section */
h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a3d0a;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(26, 61, 10, 0.1);
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #4a7c59;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

/* Navigation Links */
body > a {
    display: inline-block;
    margin: 0 1rem 2rem 0;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6b8e23 0%, #4a7c59 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 142, 35, 0.2);
    position: relative;
    overflow: hidden;
}

body > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

body > a:hover::before {
    left: 100%;
}

body > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 142, 35, 0.3);
}

/* Horizontal Rule */
hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6b8e23, transparent);
    margin: 3rem 0;
    border-radius: 1px;
}

/* Project Sections */
h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #1a3d0a;
    font-weight: 600;
}

h3 a {
    color: #1a3d0a;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

h3 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6b8e23, #4a7c59);
    transition: width 0.3s ease;
}

h3 a:hover {
    color: #4a7c59;
}

h3 a:hover::after {
    width: 100%;
}

/* Images */
img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 1rem 0 2rem 0;
    border: 3px solid #f8faf7;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Footer Navigation */
body > a:last-child,
body > a:nth-last-child(2) {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    margin-top: 2rem;
}

/* Container Layout */
body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1.5rem 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    body > a {
        display: block;
        margin: 0 0 1rem 0;
        text-align: center;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    body > a {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}