@charset "utf-8";
/* CSS Document */ 
        :root {
            --primary: #353a8e;
            --primary-light: #4348a5;
            --accent: #da251d;
            --accent-hover: #b81e18;
            --accent-light: #fef3f2;
            --bg-light: #f7f8fa;
            --bg-white: #ffffff;
            --text-dark: #1a1a1a;
            --text-medium: #4a4a4a;
            --text-light: #6b7280;
            --border: #e0e4e9;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06),0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08),0 2px 6px rgba(0,0,0,0.04);
            --shadow-lg: 0 12px 32px rgba(0,0,0,0.10),0 4px 12px rgba(0,0,0,0.05);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
            --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --page-width: 1650px;
            --whatsapp: #25d366;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        body {
            font-family: var(--font-stack);
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            min-height: 100vh;
        }

        .banner-fullwidth {
            width: 100%;
            overflow: hidden;
            margin-bottom: 32px;
        }
        .banner-fullwidth img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 380px;
        }

        .breadcrumb-container {
            max-width: var(--page-width);
            margin: 0 auto 20px;
            padding: 0 20px;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .breadcrumb .separator {
            color: #c0c7cf;
            user-select: none;
            font-size: 0.7rem;
        }
        .breadcrumb .current {
            color: var(--text-dark);
            font-weight: 600;
        }

        .news-page {
            max-width: var(--page-width);
            margin: 0 auto;
            padding: 0 20px 48px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .page-header .badge {
            display: inline-block;
            background-color: var(--accent-light);
            color: var(--accent);
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 14px;
        }
        .page-header h1 {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }
        .page-header .subtitle {
            font-size: 1.05rem;
            color: var(--text-medium);
            max-width: 650px;
            margin: 0 auto;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 28px;
            margin-bottom: 48px;
        }

        .news-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: box-shadow var(--transition), transform var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .news-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .news-card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            background: #f0f2f5;
            border-bottom: 1px solid var(--border);
        }
        .news-card-body {
            padding: 22px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .news-date {
            font-size: 0.8rem;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 4px;
            letter-spacing: 0.02em;
        }
        .news-date svg {
            width: 14px;
            height: 14px;
            fill: var(--text-light);
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.4;
            color: #000000;
        }
        .news-title a {
            color: #000000;
            text-decoration: none;
            transition: color var(--transition);
        }
        .news-title a:hover {
            color: var(--accent);
        }
        .news-description {
            font-size: 0.92rem;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
        }
        .read-more {
            align-self: flex-start;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--accent);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color var(--transition), gap var(--transition);
            margin-top: auto;
        }
        .read-more:hover {
            color: var(--primary);
            gap: 8px;
        }
        .read-more svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .contact-section {
            width: 100%;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 40px 40px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .contact-section::after {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: var(--accent-light);
            border-radius: 50%;
            opacity: 0.5;
            z-index: 0;
        }
        .contact-section h2 {
            font-size: 1.7rem;
            font-weight: 800;
            color: #000000;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
            letter-spacing: -0.01em;
        }
        .contact-section .section-subtitle {
            color: var(--text-medium);
            margin-bottom: 30px;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }
        .contact-cards {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .contact-card {
            background: #fafbfc;
            border-radius: var(--radius);
            padding: 18px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            text-decoration: none;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition);
            min-width: 220px;
            flex: 0 1 auto;
        }
        .contact-card:hover {
            background: #ffffff;
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .contact-card .icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: white;
            flex-shrink: 0;
            transition: all var(--transition);
        }
        .contact-card:hover .icon-circle {
            background: var(--accent);
            transform: scale(1.05);
        }
        .contact-card .icon-circle.whatsapp {
            background: var(--whatsapp);
        }
        .contact-card:hover .icon-circle.whatsapp {
            background: #1fb855;
        }
        .contact-card .icon-circle svg {
            width: 22px;
            height: 22px;
            fill: white;
        }
        .contact-card .info {
            display: flex;
            flex-direction: column;
        }
        .contact-card .label {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--primary);
            letter-spacing: 0.02em;
        }
        .contact-card .value {
            font-size: 0.85rem;
            color: var(--text-medium);
            font-weight: 500;
        }
        .contact-card .arrow-icon {
            margin-left: auto;
            color: var(--text-light);
            transition: color var(--transition), transform var(--transition);
            display: flex;
            align-items: center;
        }
        .contact-card:hover .arrow-icon {
            color: var(--accent);
            transform: translateX(4px);
        }

        .page-footer-note {
            text-align: center;
            margin-top: 48px;
            font-size: 0.82rem;
            color: var(--text-light);
        }
        .page-footer-note a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .page-footer-note a:hover {
            color: var(--accent);
            text-decoration: underline;
        }

        @media (max-width: 900px) {
            .contact-cards {
                flex-direction: column;
                align-items: stretch;
            }
            .contact-card {
                justify-content: center;
            }
            .contact-section {
                padding: 30px 20px;
            }
        }
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            .news-card-image {
                height: 180px;
            }
            .news-page {
                padding: 0 12px 32px;
            }
            .breadcrumb-container {
                padding: 0 12px;
            }
        }
.contact-section{ width: 100%;margin-bottom: 48px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;}
.digg4{ padding:10px; margin:10px; text-align:center; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; width: 100%; }
.digg4 a,.digg4 span.miy{ margin:2px; text-decoration:none;}
.digg4 .disabledfy{ font-family: Tahoma, Verdana;}
.metpager_9 a,.metpager_9 span.miy{ border:1px solid #eae0d9; padding:10px 15px 10px 15px; color:#a1a0a0;  border-radius: 5px; } 
.metpager_9 a.page-num-current{background-color: #353b8f;  color: #fff; }
.metpager_9 a:hover { border:1px solid #eae0d9; color:#fff; background-color:#353b8f; } 
.metpager_9 a:hover { border:1px solid #eae0d9; color:#fff; background-color:#353b8f; } 
.metpager_9 span.current {border:1px solid #b2e05d; padding:2px 5px 2px 5px; margin:2px; color:#fff; background-color:#b2e05d; text-decoration:none;} 
.metpager_9 span.disabled { border:1px solid #f3f3f3; padding:2px 5px 2px 5px; margin:2px; color:#ccc;} 
