header, body {
    border: 0;
    padding: 0;
    margin: 0;
}

.maincontainer {
    width: 90%;
    margin: auto;
    margin-top: 50px;
    height: 100%;
    }

h1 {
    font-family: "IBM Plex Serif", sans-serif;
    color: #133844;
    font-size: 3.5rem;
    font-weight: normal;
    margin: 10px 15%;
    padding: 20px 0;
    }
    
h2 {
    font-family: "IBM Plex Serif", sans-serif;
    color: #000;
    font-size: 2.1rem;
    font-weight: normal;
    margin: 1rem 1.5em 1rem 1.5em;
    text-indent: 1em;
    }
    
h3 {
    font-family: "IBM Plex Serif", sans-serif;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1.5rem 40px 1rem 40px;
    text-align: justify;
    line-height: 1.5;
    text-indent: 1em;
}
p, li, ul {
    font-family: "IBM Plex Serif", sans-serif;
    color: #000;
    font-size: 1.2rem;
    font-weight: normal;
    margin: 0 30px;
    text-align: justify;
    line-height: 1.5;
    text-indent: 1em;
}

.policy-table {
    width: calc(100%-20px);
    border-collapse: collapse;
    margin: 20px 10px;
}
        
.policy-table th, .policy-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-family: "IBM Plex Serif", sans-serif;
}
        
.policy-table th {
    background-color: #f2f2f2;
}
        
.policy-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
        
.fa {
  /*padding: 5px;*/
  font-size: 24px;
  width: 24px;
  text-align: center;
  text-decoration: none;
  color: #orange;
}

/* Claude Start - social network icons */
.share-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
            justify-content: center;
        }

        /* Base button style */
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width:30px;
            height: 30px;
            border-radius: 3px;
            color: black;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 18px;
        }

        /* Button hover effects */
        .share-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background-color: #cccccc;
        }

        /* Copy link toast notification */
        .copy-toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .copy-toast.show {
            visibility: visible;
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 480px) {
            .share-buttons {
                gap: 8px;
            }
            .share-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }
/*  Claude end  */
            
.socialcontainer {
    display: flex;
    flex-direction: row;
    justify-content: right;
    margin-right: 15%;
    margin-top: -40px;
    margin-bottom: 10px;
}

header {
    position: fixed;
    top: 0;
    box-sizing: border-box;
    background-color: #133844;
    width: 100vw;
    height: 50px;
    padding: 0 15%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    font-family: "IBM Plex Sans", Roboto;
    color: #fff;
    font-size: 2rem;
    font-weight: normal;
}
    
footer {
    box-sizing: border-box;
    background-color: #133844;
    width: 100%;
    height: 30px;
    padding: 0 15%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    font-family: "IBM Plex Sans", Roboto;
    color: #fff;
    font-size: 1rem;
    font-weight: light;
    }

.hamburger {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    }
        
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
    }
        
/* Menu styling */
.menu {
    position: fixed;
    top: 50px; /* Position below the header */
    right: 0px;
    width: 250px;
    height: calc(100vh - 50px); /* Full height minus header */
    background-color: #133844;
    padding: 15px 15px;
    display: none;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    border-left: 1px solid red  ;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
    }
        
.menu.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    }
        
.menu a {
    color: white;
    text-decoration: none;
    padding: 10px 5px;
    font-size: 1rem;
    font-family: "IBM Plex Sans", Roboto;
    transition: background-color 0.3s ease;
    border-left: 3px solid transparent;
    }
        
.menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #444;
    }
        
.menu a.active {
    color: #999;
    border-left: 3px solid #999;
    background-color: rgba(255, 255, 255, 0.05);
    }
        
.greycontainer {
    background-color: #e8e6e6;
    border-radius: 10px;
    /* width: 92%; */
    margin: 0 10%;
    height: 100%;
    padding: 0 0 2% 0;
}

.topcontainerpic {
/*     margin: 20px 30px 20px -100px; */
    border-radius: 10px 10px 0 0;
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Hide the picture container on mobile devices */
@media only screen and (max-width: 768px) {
    .topcontainerpic {
        display: none;
    }
}

.backtomain {
    display: flex;
    flex-direction: row-reverse;
    font-family: "IBM Plex Serif", sans-serif;
    font-size: 1.2rem;
    font-weight: normal;
    margin: 30px 15% 20px auto;
    text-align: right;
    line-height: 1.5;
    color: #133844;
}

.backtomain:hover {
    font-weight: bold;
}

a {
    text-decoration: none;
}

/* Mobile specific styles */
@media only screen and (max-width: 768px) {
    /* Text size reset for mobile */
    h1 {
        font-size: 2rem;
        font-weight: bold;
        margin: 10px 5%;
        padding: 15px 0;
        text-align: center;
    }
    
    h2 {
        font-size: 1.5rem;
        font-weight: bold;
        margin: 1rem 1em;
        text-indent: 0;
    }
    
    h3 {
        font-size: 1.1rem;
        font-weight: bold;
        margin: 1rem 20px;
        text-align: left;
        text-indent: 0;
    }
    
    p {
        font-size: 1rem;
        font-weight: normal;
        margin: 0.8rem 20px;
        text-align: left;
        text-indent: 0;
    }
    
    /* Container adjustments for mobile */
    .maincontainer {
        width: 95%;
        margin-top: 60px;
    }
    
    .greycontainer {
        margin: 0 2%;
        padding: 10px 0;
    }
    
    /* Header adjustments */
    header {
        padding: 0 5%;
        font-size: 1.5rem;
    }
    
    /* Social container adjustments */
    .socialcontainer {
        margin-right: 5%;
        margin-top: -30px;
        justify-content: center;
    }
    
    /* Back to main link adjustment */
    .backtomain {
        margin: 20px 5%;
        font-size: 1rem;
    }
    
    /* Footer adjustment */
    footer {
        padding: 0 5%;
    }
}

/* Small mobile phones */
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .maincontainer {
        margin-top: 55px;
    }
    
    header {
        font-size: 1.3rem;
    }
}
