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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    overflow: hidden;
    height: 100vh;
}

.presentation-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slide {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.8s ease-out 0.3s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title Slide Styles */
.title-slide {
    text-align: center;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.5));
    }
}

.subtitle {
    font-size: 2rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.title-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: imageFloat 3s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.title-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* General heading styles */
h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    animation: underlineExpand 0.8s ease-out 0.5s both;
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Content Grid Styles */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content {
    text-align: left;
}

.definition {
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #667eea;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.definition p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.examples {
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.examples h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.examples ul {
    list-style: none;
}

.examples li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.examples li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.image-content {
    animation: slideInRight 0.8s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-content img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.05);
}

/* Comparison Grid Styles */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.law-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.law-type:nth-child(1) {
    animation-delay: 0.2s;
}

.law-type:nth-child(2) {
    animation-delay: 0.4s;
}

.law-type:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.law-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.law-type.administrative {
    border-top: 5px solid #667eea;
}

.law-type.criminal {
    border-top: 5px solid #e74c3c;
}

.law-type.civil {
    border-top: 5px solid #2ecc71;
}

.law-type h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.law-type p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.court-image {
    text-align: center;
    margin-top: 2rem;
}

.court-image img {
    max-width: 200px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Sources Pyramid Styles */
.sources-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.source-level {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.source-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out both;
}

.level-1 .source-item {
    animation-delay: 0.2s;
}

.level-2 .source-item:nth-child(1) {
    animation-delay: 0.4s;
}

.level-2 .source-item:nth-child(2) {
    animation-delay: 0.5s;
}

.level-3 .source-item:nth-child(1) {
    animation-delay: 0.6s;
}

.level-3 .source-item:nth-child(2) {
    animation-delay: 0.7s;
}

.level-3 .source-item:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.source-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.documents-image {
    text-align: center;
}

.documents-image img {
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Participants Styles */
.participants {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.participant {
    text-align: center;
    animation: slideInScale 0.8s ease-out both;
}

.participant.state {
    animation-delay: 0.2s;
}

.participant.citizens {
    animation-delay: 0.6s;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.participant h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.participant-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.participant-list span {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.participant-list span:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vs-divider {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.officials-image {
    text-align: center;
    margin-top: 2rem;
}

.officials-image img {
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsibility Types Styles */
.responsibility-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.punishment-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: bounceIn 0.8s ease-out both;
}

.punishment-item:nth-child(1) {
    animation-delay: 0.1s;
}

.punishment-item:nth-child(2) {
    animation-delay: 0.3s;
}

.punishment-item:nth-child(3) {
    animation-delay: 0.5s;
}

.punishment-item:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.punishment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.punishment-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.punishment-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.punishment-item p {
    color: #666;
    font-size: 0.9rem;
}

.responsibility-image {
    text-align: center;
}

.responsibility-image img {
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Composition Elements Styles */
.composition-elements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.element {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: rotateIn 0.8s ease-out both;
}

.element:nth-child(1) {
    animation-delay: 0.1s;
}

.element:nth-child(2) {
    animation-delay: 0.3s;
}

.element:nth-child(3) {
    animation-delay: 0.5s;
}

.element:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.element:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.element-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.element h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.element p {
    color: #666;
    font-size: 0.9rem;
}

.important-note {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    animation: wiggle 0.8s ease-out 1s both;
}

@keyframes wiggle {
    0%, 7%, 14%, 21% {
        transform: translateX(0);
    }
    3.5%, 10.5%, 17.5% {
        transform: translateX(-3px);
    }
    7%, 14% {
        transform: translateX(3px);
    }
}

/* Violations Grid Styles */
.violations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.violation-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: flipIn 0.8s ease-out both;
}

.violation-item:nth-child(1) {
    animation-delay: 0.1s;
}

.violation-item:nth-child(2) {
    animation-delay: 0.2s;
}

.violation-item:nth-child(3) {
    animation-delay: 0.3s;
}

.violation-item:nth-child(4) {
    animation-delay: 0.4s;
}

.violation-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0);
    }
}

.violation-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.violation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.violation-item h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.fine {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Authorities Grid Styles */
.authorities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.authority {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: zoomIn 0.8s ease-out both;
}

.authority:nth-child(1) {
    animation-delay: 0.1s;
}

.authority:nth-child(2) {
    animation-delay: 0.2s;
}

.authority:nth-child(3) {
    animation-delay: 0.3s;
}

.authority:nth-child(4) {
    animation-delay: 0.4s;
}

.authority:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.authority:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.authority h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.authority p {
    color: #666;
    font-size: 0.9rem;
}

.traffic-police-image {
    text-align: center;
}

.traffic-police-image img {
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Timeline Styles */
.procedure-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 2rem 0;
}

.procedure-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    z-index: 1;
    animation: lineExpand 2s ease-out 0.5s both;
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.timeline-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    flex: 1;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    animation: timelineUp 0.8s ease-out both;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.8s;
}

.timeline-item:nth-child(5) {
    animation-delay: 1s;
}

@keyframes timelineUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.timeline-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-item p {
    color: #666;
    font-size: 0.8rem;
}

/* Rights List Styles */
.rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.right-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideInRotate 0.8s ease-out both;
}

.right-item:nth-child(1) {
    animation-delay: 0.1s;
}

.right-item:nth-child(2) {
    animation-delay: 0.2s;
}

.right-item:nth-child(3) {
    animation-delay: 0.3s;
}

.right-item:nth-child(4) {
    animation-delay: 0.4s;
}

.right-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInRotate {
    from {
        opacity: 0;
        transform: translateX(-30px) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.right-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.right-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

.important-tip {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    animation: bounce 0.8s ease-out 1s both;
}

/* Appeal Info Styles */
.appeal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.appeal-deadline {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.appeal-deadline h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.appeal-destinations {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease-out 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.destination .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.success-rate {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    animation: slideInUp 0.8s ease-out 0.5s both;
}
.slide-content-123 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Minors Info Styles */
.minors-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.age-limit {
    background: white;

    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: bounceIn 0.8s ease-out 0.2s both;
}
.age-limit>p{
    margin-top: 10px;
}
.parents-responsibility {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: bounceIn 0.8s ease-out 0.4s both;
}
.parents-responsibility>p {
    margin-top: 10px;
}
.preventive-measures {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: bounceIn 0.8s ease-out 0.6s both;
}

.preventive-measures ul {
    list-style: none;
    margin-top: 1rem;
}

.preventive-measures li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.preventive-measures li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.youth-image {
    text-align: center;
}

.youth-image img {
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Digital Features Styles */
.digital-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: digitalGlow 0.8s ease-out both;
}

.feature:nth-child(1) {
    animation-delay: 0.2s;
}

.feature:nth-child(2) {
    animation-delay: 0.4s;
}

.feature:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes digitalGlow {
    from {
        opacity: 0;
        transform: scale(0.9);
        box-shadow: 0 0 0 rgba(102, 126, 234, 0);
    }
    to {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    }
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature p {
    color: #666;
    line-height: 1.5;
}

.digital-question {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    animation: questionPulse 2s ease-in-out infinite;
}

@keyframes questionPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.digital-image {
    text-align: center;
}

.digital-image img {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Conclusion Styles */
.conclusion {
    text-align: center;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: conclusionRise 0.8s ease-out both;
}

.point:nth-child(1) {
    animation-delay: 0.2s;
}

.point:nth-child(2) {
    animation-delay: 0.4s;
}

.point:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes conclusionRise {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.point:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.point-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.point h4 {
    font-size: 1.1rem;
    color: #333;
}

.final-message {
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #667eea;
    animation: fadeInScale 0.8s ease-out 0.8s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you {
    animation: finalBounce 1s ease-out 1s both;
}

@keyframes finalBounce {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Styles */
.navigation {
    position: fixed;
    bottom: 30px;
    left: 1%;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navigation button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.navigation button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.slide-indicator {
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

/* Progress Bar Styles */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1001;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.6s ease;
    border-radius: 0 2px 2px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide {
        padding: 20px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 15px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .responsibility-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .composition-elements {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .authorities-grid {
        grid-template-columns: 1fr;
    }
    
    .procedure-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .procedure-timeline::before {
        display: none;
    }
    
    .participants {
        grid-template-columns: 1fr;
    }
    
    .digital-features {
        grid-template-columns: 1fr;
    }
    
    .key-points {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .navigation {
        bottom: 20px;
        padding: 0.8rem 1.5rem;
        gap: 1.5rem;
    }
    
    .navigation button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 10px;
    }
    
    .responsibility-types {
        grid-template-columns: 1fr;
    }
    
    .composition-elements {
        grid-template-columns: 1fr;
    }
    
    .violations-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-list {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}