body 1{
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: white;
        }

        .section1 {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            margin: 50px 0;
        }

        .section1:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .text-box {
            background-color: #f8f8f8;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 400px;
            margin: 20px;
        }

        .image {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            overflow: hidden;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .circle-decor {
            width: 40px;
            height: 40px;
            background-color: #002855;
            border-radius: 50%;
            margin-bottom: 15px;
        }

        .text-box h3 {
            color: #002855;
            margin: 0 0 15px;
        }

        .text-box p {
            margin: 0 0 15px;
            color: #333;
            line-height: 1.5;
        }

        .text-box a {
            display: inline-block;
            text-decoration: none;
            padding: 10px 20px;
            border: 1px solid #002855;
            border-radius: 5px;
            color: #002855;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .text-box a:hover {
            background-color: #002855;
            color: white;
        }