        body {
            margin: 0;
            font-family: "Ancizar Serif", serif;
            background: #ffffff;
        }
        header {
            background: #aca8a8;
            color: #fff;
            padding: 50px 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        header h1 {
            margin: 0;
            font-size: 3rem;
            letter-spacing: 1px;
        }
        .section {
            max-width: 1100px;
            margin: 60px auto;
            padding: 20px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        .section:nth-child(even) {
            flex-direction: row-reverse;
        }
        .section img {
            width: 45%;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            transition: transform 0.5s;
        }
        .section img:hover {
            transform: scale(1.05);
        }
        .content {
            width: 50%;
        }
        .content h2 {
            color: #004d99;
            margin-bottom: 20px;
            font-size: 2.2rem;
        }
        .content p {
            font-size: 1.3rem;
            line-height: 2.2;
        }
        footer {
            background-color: #1a2357;
            color: #fff;
            text-align: center;
            padding: 25px;
            font-size: 1rem;
            margin-top: 70px;
        }
        @media (max-width: 768px) {
            .section {
                flex-direction: column !important;
            }
            .section img, .content {
                width: 100%;
            }
            .content h2 {
                text-align: center;
            }
        }