body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
}

.resume-container {
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

.name {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
}

.field {
    font-size: 1.1em;
    font-weight: 500;
}

.section-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
	background-color: rgba(220, 220, 220, 0.4); /* Opaklık düşürülmüş daha açık bir gri */
}

.contact-details {
    margin-bottom: 20px;
}

.contact-details span {
    margin-right: 15px;
    color: #555;
    font-size: 0.9em;
}

.summary p {
    margin: 0;
}

.experience .job {
    margin-bottom: 20px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.company {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
}

.dates {
    font-size: 0.9em;
    color: #555;
}

.role {
    font-style: italic;
    margin: 5px 0;
}

.job ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 5px 0;
}

.job ul li {
    margin-bottom: 5px;
}


.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.skill-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    margin-bottom: 5px;
}

/* Education */
.education-item {
    margin-bottom: 15px;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.education-item h3 {
    font-weight: bold;
    margin: 0;
}

.education-item p {
    margin: 5px 0 0 0;
    font-size: 0.95em;
    font-style: italic;
}

/* Certifications */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
}

.cert-item {
    margin-bottom: 0;
}

.cert-title {
    font-size: 1em;
    font-weight: bold;
    margin: 0;
}

.cert-provider {
    font-size: 0.9em;
    color: #555;
    margin: 5px 0 0 0;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-item {
    margin-bottom: 15px;
}

.project-item h4 {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.project-item p {
    margin: 0;
}

.project-item ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 5px 0 0 0;
}

.project-item ul li {
    margin-bottom: 5px;
}


.slider-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 100%; /* container genişliğini kapla */
    flex-shrink: 0;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }
