		.resume.container {
			padding-top: 50px;
		}
        h1 {
            font-size: 2.5em;
            color: #ecf3f9;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 15px;
            color: #555;
        }

        .contact-info span {
            display: flex;
            align-items: center;
        }

        h2 {
            color: #9ec1e1;
            font-size: 2em;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #e0e0e0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h3 {
            color: #77a8d5;
            font-weight: 600;
            font-size: 1.5em;
            margin-top: 20px;
            margin-bottom: 5px;
        }

        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            flex-wrap: wrap;
        }

        .date {
            color: #666;
            font-style: italic;
            font-size: 0.95em;
        }

        .organization {
            color: rgb(200,200,200);
            font-style: italic;
            margin-bottom: 10px;
        }

        .section-content {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        ul {
            margin-left: 40px;
            margin-top: 8px;
        }

        li {
            margin-bottom: 5px;
        }

        a {
            color: #2c5f8d;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .skill-category {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            border-left: 3px solid #2c5f8d;
        }

        .skill-category strong {
            color: #2c5f8d;
            display: block;
            margin-bottom: 8px;
        }

        .web-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }

        .web-links a {
            background: #2c5f8d;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .web-links a:hover {
            background: #1a3f5f;
            text-decoration: none;
        }

        .publication {
            margin-bottom: 15px;
            padding-left: 20px;
            border-left: 2px solid #e0e0e0;
        }
		ul.resume-list {
			margin-left: 0;
			padding-left: 0;
			line-height: 1.5em;			
		}
        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .container {
                box-shadow: none;
                padding: 20px;
            }
        }

        @media (max-width: 600px) {
            .container {
                padding: 20px;
            }

            h1 {
                font-size: 2em;
            }

            .job-header {
                flex-direction: column;
            }
        }
