    /* General Styles */
    body {
        font-family: 'Oswald', sans-serif;
        background-color: #f8f8f8;
        color: #333;
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }

    /* Header */
    header {
        background-color: #fff;
        padding: 15px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid #000;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo {
        font-size: 32px;
        font-weight: bold;
        color: #000;
    }

    nav {
        display: flex;
        gap: 10px;
    }

    .btn {
        background-color: #000;
        color: #fff;
        padding: 8px 12px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        border-radius: 5px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .btn {
        min-width: 100px; /* Minimum width for buttons */
        min-height: 40px; /* Minimum height for buttons */
        padding: 10px 20px; /* Adequate padding */
    }

    .btn:hover {
        background-color: #444;
        transform: translateY(-2px);
        color:white;
    }

    #kurasel{
        background-color: white;
        height: 500px;
        border-radius: 15px; /* Smooth curved edges */
        border: 2.5px solid gold; /* Thin gold border */
        width: 94%;
        margin: auto;
    }

    /* Hero Section */
    .hero {
        background: url('https://via.placeholder.com/1200x400') no-repeat center center/cover;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        padding: 20px;
    }

    .hero-content {
        background: rgba(0, 0, 0, 0.6);
        padding: 15px;
        border-radius: 10px;
        max-width: 90%;
    }

    .hero h2 {
        font-size: 40px;
        margin: 0;
    }

    .hero p {
        font-size: 20px;
        margin-top: 10px;
    }

    /* Blog Post */
    main {
        width: 90%;
        max-width: 800px;
        margin: 30px auto;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .blog-post {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        margin-bottom: 40px;
    }

    .blog-post h2 {
        font-size: 26px;
        text-transform: uppercase;
        color: #000;
    }

    .subheading {
        font-style: italic;
        color: #555;
        font-size: 16px;
    }

    blockquote {
        font-style: italic;
        margin: 20px 0;
        padding-left: 15px;
        border-left: 3px solid #000;
        color: #555;
    }

    /* Footer */
    footer {
        background-color: #000;
        color: #fff;
        text-align: center;
        padding: 15px;
        margin-top: 40px;
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        header {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero {
            height: 280px;
            padding: 10px;
        }

        .hero h2 {
            font-size: 30px;
        }

        .hero p {
            font-size: 18px;
        }

        .btn {
            width: 100%; /* Make buttons full width on small screens */
            margin: 5px 0; /* Add spacing between buttons */
        }

        main {
            width: 95%;
            padding: 15px;
        }

        .blog-post h2 {
            font-size: 22px;
        }
        nav {
            margin-top: 10px;
        }
    }

    @media screen and (max-width: 480px) {
        .hero {
            height: 200px; /* Reduce height for smaller screens */
        }
    
        .hero h2 {
            font-size: 20px; /* Smaller font size for small screens */
        }
    
        .hero p {
            font-size: 14px; /* Smaller font size for small screens */
        }
    
        .hero-content {
            padding: 10px; /* Reduce padding for small screens */
        }

        .btn {
            min-width: 80px; /* Smaller minimum width for small screens */
            min-height: 35px; /* Smaller minimum height for small screens */
            padding: 8px 15px; /* Smaller padding for small screens */
        }
      main {
        padding: 10px; /* Reduce padding for small screens */
    }

    .blog-post h2 {
        font-size: 18px; /* Smaller font size for small screens */
    }

    .subheading {
        font-size: 14px; /* Smaller font size for small screens */
    }

    blockquote {
        font-size: 14px; /* Smaller font size for small screens */
    }
    }
