        body {
            font-family: 'Source Serif Pro', serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(to right, #ece9e6, #ffffff);
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;

        }
        .container {
            width: 80%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px;
            background: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        h1, h2 {
            font-family: 'Oswald', sans-serif;
            color: #1f2b3d;
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        h2 {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        .section {
            margin-bottom: 40px;
        }
        .section-title {
            border-bottom: 3px solid #1f2b3d;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.5em;
        }
        p {
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        .contact-info, .skills, .education, .experience, .other-skills {
            display: flex;
            flex-direction: column;
        }
        .contact-info p, .skills p, .education p, .experience p, .other-skills p {
            margin-bottom: 10px;
        }
        .contact-info p strong, .skills p strong, .education p strong, .experience p strong, .other-skills p strong {
            display: inline-block;
        }
        .contact-info p {
            font-size: 1.2em;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            margin-top: 20px;
            background-color: #1f2b3d;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .btn:hover {
            background-color: #1f2b3d;
        }