/* Publication Ethics Page CSS */
.page-publication-ethics {
    background: #f8fafc;
}

/* Hero Section */
.ethics-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    padding: 80px 0 100px;
    text-align: center;
    color: white;
    position: relative;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.ethics-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ethics-hero .hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.ethics-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ethics-hero .hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-section {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #4a5568;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #667eea;
}

.breadcrumb .active {
    color: #667eea;
    font-weight: 600;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background: #f8fafc;
}

.intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(26px, 4vw, 34px);
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text .highlight {
    color: #667eea;
}

.intro-text p {
    color: #1a202c;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.intro-text p strong {
    color: #5568d3;
    font-weight: 700;
}

.intro-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    width: 100%;
}

.intro-image img:hover {
    transform: scale(1.02);
}

/* COPE Section */
.cope-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 60px 0;
}

.cope-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cope-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.cope-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #4dabf7;
}

.cope-text h2 {
    font-size: clamp(24px, 4vw, 32px);
    color: white;
    margin-bottom: 15px;
}

.cope-text p {
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
}

.cope-text a {
    color: #4dabf7;
    font-weight: 700;
    text-decoration: underline;
}

.cope-text a:hover {
    color: #74c0fc;
}

/* Duties Section */
.duties-section {
    background: white;
    padding: 80px 0;
}

.duties-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: #1a202c;
    margin-bottom: 15px;
}

.section-header p {
    color: #4a5568;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.duties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.duty-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.duty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.duty-card:hover::before {
    transform: scaleX(1);
}

.duty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.duty-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.duty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    font-size: 32px;
    color: white;
}

.duty-card h3 {
    font-size: 24px;
    color: #1a202c;
    font-weight: 700;
}

.duty-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.duty-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.duty-item:hover {
    border-left-color: #764ba2;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.duty-item h4 {
    font-size: 17px;
    color: #1a202c;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.duty-item h4::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border-radius: 50%;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}

.duty-item p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-left: 34px;
}

/* Principles Section */
.principles-section {
    background: white;
    padding: 80px 0;
}

.principles-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.principle-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.principle-card h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 12px;
}

.principle-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

/* Info Section */
.info-section {
    background: #f8fafc;
    padding: 60px 0;
}

.info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.info-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 20px;
    padding: 35px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '📋';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.1;
}

.info-box h3 {
    font-size: 24px;
    color: #92400e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #78350f;
}

.info-box a {
    color: #92400e;
    font-weight: 700;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

main.page-publication-ethics .cta-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-publication-ethics .cta-btn.primary {
    background: white;
    color: #667eea;
}

.page-publication-ethics .cta-btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.page-publication-ethics .cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.page-publication-ethics .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact-section {
    background: #f8fafc;
    padding: 60px 0;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
    font-size: 26px;
    color: #1a202c;
    margin-bottom: 15px;
}

.contact-box p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}

.contact-box a {
    color: #667eea;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image {
        order: -1;
    }

    .cope-content {
        flex-direction: column;
        text-align: center;
    }

    .duties-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ethics-hero {
        padding: 60px 0 80px;
    }

    .duty-card {
        padding: 25px;
    }

    .duty-item {
        padding: 15px;
    }

    .duty-item p {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-publication-ethics .cta-btn {
        width: 100%;
        justify-content: center;
    }
}