 body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f4f7f6;
            color: #333;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 40px 0;
        }

        header h1 {
            font-size: 2.5em;
            color: #68382b;
            margin-bottom: 10px;
        }

        header p {
            font-size: 1.2em;
            color: #7f8c8d;
        }

        .hero-image {
            width: 120px;
            height: 120px;
            display: block;
            margin: 0 auto 20px auto;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .section {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .section h2 {
            font-size: 2em;
            color: #e67e22;
            margin-top: 0;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 10px;
        }

        .section ul {
            list-style: none;
            padding: 0;
        }

        .section ul li {
            background: #fcfcfc;
            margin-bottom: 10px;
            padding: 15px;
            border-left: 4px solid #db9034;
            border-radius: 4px;
        }

        .call-to-action {
            text-align: center;
            margin-top: 40px;
        }

        blockquote {
            background-color: #ecf0f1;
            border-left: 5px solid #bdc3c7;
            margin: 20px 0;
            padding: 20px;
            font-style: italic;
            color: #555;
            font-size: 1.1em;
        }
        h3 {
            color: #6a6a6a;
        }

        footer {
            text-align: center;
            padding: 20px 0;
            color: #7f8c8d;
            font-size: 0.9em;
        }

        .language-dropdown {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .language-icon {
            font-size: 1.5em;
            color: #68382b;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: background-color 0.2s;
            display: block;
        }

        .language-icon:hover {
            background-color: #e0e0e0;
        }

        .dropdown-content {
            display: none; 
            position: absolute;
            right: 0;
            min-width: 180px; 
            background-color: #fff;
            box-shadow: 0 6px 12px rgba(0,0,0,0.175); 
            border-radius: 6px; 
            margin-top: 10px;
            overflow: hidden; 
        }
        
        .dropdown-content.show {
            display: block;
            animation: fadeIn 0.3s; 
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 15px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #f0f0f0; 
            transition: background-color 0.2s;
        }
        
        .dropdown-content a:last-child {
            border-bottom: none; 
        }

        .dropdown-content a:hover {
            background-color: #fce4b3; 
            color: #68382b;
        }