       * {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
       }

       body {
           font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
           background: #f5f5f5;
           padding: 20px;
       }

       .resume {
           max-width: 210mm;
           min-height: 297mm;
           background: white;
           margin: 0 auto;
           display: flex;
           box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
       }

       .sidebar {
           width: 240px;
           background: #2c5aa0;
           color: white;
           padding: 40px 30px;
       }

       .photo-placeholder {
           width: 180px;
           height: 180px;
           background: #1a4278;
           border: 3px solid #fff;
           display: flex;
           align-items: center;
           justify-content: center;
           font-size: 12px;
           color: #fff;
           text-align: center;
           margin-bottom: 30px;
       }

       .photo-placeholder img {
           width: 100%;
           height: 100%;
           object-fit: cover;
       }

       .sidebar h3 {
           font-size: 18px;
           margin-bottom: 15px;
           padding-bottom: 10px;
           border-bottom: 2px solid rgba(255, 255, 255, 0.3);
       }

       .sidebar-section {
           margin-bottom: 30px;
       }

       .contact-info div {
           margin-bottom: 12px;
           font-size: 13px;
           line-height: 1.4;
       }

       .skills-list-sidebar {
           list-style: none;
       }

       .skills-list-sidebar li {
           margin-bottom: 8px;
           font-size: 14px;
       }

       .main-content {
           flex: 1;
           padding: 40px;
       }

       h1 {
           color: #2c3e50;
           font-size: 32px;
           margin-bottom: 5px;
       }

       .job-title {
           color: #2c5aa0;
           font-size: 20px;
           margin-bottom: 30px;
           padding-bottom: 15px;
           border-bottom: 3px solid #2c5aa0;
       }

       .section {
           margin-bottom: 30px;
       }

       h2 {
           color: #2c3e50;
           font-size: 22px;
           margin-bottom: 15px;
           padding-bottom: 8px;
           border-bottom: 2px solid #ecf0f1;
       }

       .profile-text {
           color: #555;
           font-size: 15px;
           line-height: 1.7;
           margin-bottom: 15px;
       }

       .skill-category {
           margin-bottom: 20px;
       }

       .skill-category-title {
           font-weight: bold;
           color: #2c3e50;
           font-size: 16px;
           margin-bottom: 8px;
       }

       .skill-description {
           color: #555;
           font-size: 14px;
           line-height: 1.6;
           margin-bottom: 10px;
       }

       #cy {
           width: 100%;
           height: 280px;
           margin: 20px 0;
           border: 1px solid #ecf0f1;
           border-radius: 5px;
       }

       @media print {
           body {
               padding: 0;
               background: white;
           }

           .resume {
               box-shadow: none;
               max-width: 100%;
           }
       }