       * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 40px;
            background: #f4f6f9;
            font-family: "Segoe UI", Tahoma, sans-serif;
            color: #2c2c2c;
        }

        .resume {
            max-width: 1000px;
            margin: auto;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #e6e6e6;
            padding-bottom: 20px;
        }

        .header h1 {
            margin: 0;
            font-size: 34px;
            color: #1a73e8;
        }

        .header p {
            margin: 5px 0 0;
            font-size: 16px;
            font-weight: 500;
        }

        .contact {
            text-align: right;
            font-size: 14px;
            color: #555;
        }

        .content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            margin-top: 30px;
        }

        h2 {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 2px solid #1a73e8;
            padding-bottom: 5px;
            margin-bottom: 15px;
        }

        ul {
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

        .left-section {
            background: #f8faff;
            padding: 20px;
            border-radius: 8px;
        }

        .job-title {
            font-weight: bold;
            font-size: 16px;
        }

        .company {
            color: #1a73e8;
        }

        .date {
            font-size: 13px;
            color: #777;
            margin-bottom: 10px;
        }

        .section {
            margin-bottom: 30px;
        }

        .education p {
            margin: 5px 0;
        }

        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
            }

            .header {
                flex-direction: column;
                align-items: flex-start;
            }

            .contact {
                text-align: left;
                margin-top: 10px;
            }
        }